<!-- begin script

function days2go(yy,mm,dd,preStr,eventStr){
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var today=new Date()
var todayy=today.getYear()
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var futurestring=montharray[mm-1]+" "+dd+", "+yy
var diff=(Math.round((Date.parse(futurestring)-Date.parse(todaystring))/(24*60*60*1000))*1)
// if (diff==0)
// document.write(current)
// else if (diff>0)
//document.write("Only "+diff+" days until "+before) //No longer needed. 
//document.write(diff) //KEEP

if (diff>=0) { 

var wks=0
var dys=diff

while (dys>6) {
  wks++
  dys-=7
}

//wks = 0
//if (diff>7) {
//wks = Math.round(diff/7)
//}
////dys = diff%7
//dys=diff-(7*wks)

if(diff>0) {
document.write(preStr) 
}

if (wks>0) {
document.write(" "+wks+" week") 
}
if (wks>1) {
document.write("s") 
}

if ((wks>0)&&(dys>0)) {
document.write(" &amp;") 
}

if(dys>0) {
document.write(" "+dys+" day") 
}
if(dys>1) {
document.write("s") 
}


document.write(" ") 


// document.write(" ["+diff+" days] ") //-deprecated

} //end.if (diff>=0)

if(diff>0) {
document.write(eventStr) 
}

if((dys == 0) && (wks == 0)) {
  document.write(eventStr+" is underway") 
}//end-if((dys == 0) && (wks == 0))

 
}//end-func 


// Usage ex. 
//  days2naama(2002,10,25,"") 

// end script -->