	<!-- Countdown Script by Virtual_Max -->
	<!-- http://www.geocities.com/siliconvalley/lakes/8620 -->
	<!-- please keep this comment unchanged if you use it  -->
	<!-- hide script
	//change your event date event here.
	var eventdate=new Date("January 20, 2009 18:00:00 GMT");
	
	 function toSt(n)
	 {s=""
	  if(n<10) s+="0"
	  return s+n.toString();
	 }
	 
	 function countdown()
	 {cl=document.getElementById("clock");
	  d=new Date();
	  count=Math.floor((eventdate.getTime()-d.getTime())/1000);
	  if(count<=0)
	    {cl.days.value ="----";
	     cl.hours.value="--";
	     cl.mins.value="--";
	     cl.secs.value="--";
	     return;
	    }
	  cl.secs.value=toSt(count%60);
	  count=Math.floor(count/60);
	  cl.mins.value=toSt(count%60);
	  count=Math.floor(count/60);
	  cl.hours.value=toSt(count%24);
	  count=Math.floor(count/24);
	  cl.days.value=count;    
	  
	  setTimeout("countdown()",500);
	 }
	// end script -->
