<!-- // Begin hiding
/*
Count down until any date script-
By JavaScript Kit (www.javascriptkit.com)
Over 200+ free scripts here!



//change the text below to reflect your own,
 current="today"
 montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countdown(yr,m,d){
 today=new Date()
 todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
 todaym=today.getMonth()
 todayd=today.getDate()
todaystring=montharray[todaym]+" "+todayd+", "+todayy
 futurestring=montharray[m-1]+" "+d+", "+yr
 difference=(Math.round((Date.parse(futurestring)-Date.parse(todaystring))/(24*60*60*1000))*1)
if (difference==0)
return current
else if (difference>0)
return difference
}


document.write('<center><table><tr><td><center><h2 style="color: red; margin-top: 0px; margin-bottom: 0px;">The list is now in TEST MODE.</h2>');
document.write('<font size=2 style="color: red;"><b>None of the data you enter here will be retained.<br>');
document.write('You must return when we officially launch the site<br><font size=2 style="color: black;">in ' + countdown(2005,01,01) + ' days</font> to permanently add your domain</b> ');
document.write('...</center></font></td></tr></table><br></center>');
*/

// end hiding -->

