function openWC(path) {

popWC=window.open(path,"popWC","height=425,width=525,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");

popWC.focus()

}





// Store the date in a variable

d = new Date()

dateText = ""



// Get the current month and convert it to the name of the month

monthValue = d.getMonth()

dateText += " "



// Get the current year; if it's before 2000, add 1900

if (d.getYear() < 2000) 

    year = (1900 + d.getYear())

else 

    year = (d.getYear())

	

dateText += year