function emptyfx() {
document.write("hello");
//if (document.cookies != "") {
//var cdata = unescape(document.cookie);
////document.write('cdata: ' + document.cookie + cdata);
//cdata = cdata.substring((cdata.indexOf("=") + 1),cdata.length);
//var cdataarray = cdata.split(":")
//if (cdataarray[0] != '' && cdataarray[1] != "") {
//document.write('<font class="heading">Welcome Back, ' + cdataarray[0] + '! You have earned $' + cdataarray[1] + '!</font><br>');
////document.write('<span class="copyright">If you are not ' + cdataarray[0] + ', <a href="/index.html" onClick"deleteCookie()">click here.</a>');

//document.write('<span class="copyright">If you are not ' + cdataarray[0] + ', <a href="JavaScript: deleteCookie();">click here.</a>');

//}
//}
//if (document.cookies != "") {

//}

}

function setColors() {
document.body.bgColor = "#000000";
document.body.link = "#FFFFFF"; //FFD700";
document.body.alink = "#FFFFFF";//FFA500";
document.body.vlink = "#FFFFFF";//0674B5";
}

// Get cookie routine by Shelley Powers
function get_cookie(Name) {
var search = Name + "=";
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search);
// if cookie exists
if (offset != -1) {
offset += search.length;
//set index of beginning of value
end = document.cookie.indexOf(";",offset);
//set index of end of cookie value;
if (end == -1) end = document.cookie.length;
returnvalue = unescape(document.cookie.substring(offset,end));
}
}
return returnvalue;
}


document.write('<style type="text/css">');
if (document.cookies != "") {
var cvalue = get_cookie("link");
if (cvalue != "") document.write('a:link {  color: #' + cvalue + '}');

var cvalue = get_cookie("vlink");
if (cvalue != "") document.write('a:visited {  color: #' + cvalue + '}');

var cvalue = get_cookie("alink");
if (cvalue != "") document.write('a:active {  color: #' + cvalue + '}');

var cvalue = get_cookie("background");
if (cvalue != "") document.write('body {       background-color: #' + cvalue + '}');

var cvalue = get_cookie("textcolor");
if (cvalue != "") document.write('body {       color: #' + cvalue + ';}');
if (cvalue != "") document.write('p {       color: #' + cvalue + ';}');
if (cvalue != "") document.write('td {       color: #' + cvalue + ';}');

}
document.write('</style>');