<!-- begin script
setTimeout ("changePage()", 1000);
function changePage() {
if (self.parent.frames.length != 0)
self.parent.location=document.location;}

if(document.cookie)
  {
   a = document.cookie;
   a = a.substring(a.indexOf('cssdef')+6,a.length);
   a = a.substring(a.indexOf('=')+2,a.length);
   a = a.substring(0,a.indexOf('"'));
   document.writeln('<link rel="stylesheet"    href="'+a+'" type="text/css">');
  }
  else
  {
   document.writeln('<link rel="stylesheet" href="style1.css" type="text/css">');
  }

function takeCSS()
{
 var a = new Date();
 var b = new Date(a.getTime() + (24*60*60*1000));

  document.cookie = 'cssdef="'+document.form1.cssdef.options[document.form1.cssdef.selectedIndex].value+'";expires="'+b.toGMTString()+";";

 // location.href = "index.php";
 location.reload()
 return
}


// end script -->