<!--//
var weather_temperature = "67.4";
var weather_icon = "31";
var weather_humidity = "54";
var weather_conditions = "Clear";
var weather_updated = "Aug/13/07 20:39:24";
var todaysquotation = "Currently "+weather_conditions+"<br>Temperature "+weather_temperature+"&deg;<br>Humidity "+weather_humidity+"%";
var ALIAS = "";
var BASKET = "";
var BASKETMSG = "";
var PASSWORD = "";
var GROUPS = "";
cookies = document.cookie.split("; ");
for(z=0;z<cookies.length;z++){
cookie = cookies[z].split("=");
if (cookie[0] == 'ALIAS'){ALIAS = cookie[1];}
if (cookie[0] == 'BASKET'){BASKET = cookie[1];}
if (cookie[0] == 'BASKETMSG'){BASKETMSG = cookie[1];}
if (cookie[0] == 'SESSION'){SESSION = cookie[1];}
if (cookie[0] == 'GROUPS'){GROUPS = cookie[1];}
}
function replaceChars(entry) {
out = "+";
add = " ";
temp = "" + entry;
while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}
return temp;
}
ALIAS = replaceChars(ALIAS);
GROUPS = replaceChars(GROUPS);
BASKET = replaceChars(BASKET)
BASKETMSG = replaceChars(BASKETMSG)
page_width = 0;//document.body.clientWidth-2;
page_height = 0;//document.body.clientHeight-2;
//-->