var now = new Date()
var spday= new Date(2007,1,18)
function printCountdown() {
	a = (spday.getTime() - now.getTime())/(24*60*60*1000)
	a= Math.ceil(a)
	if(a >0) document.write("‚ ‚Æ",a,"“ú")
}

