// Store the date in a variable
d = new Date()
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


function openSS(path) {
popSS=window.open(path,"popSS","height=600,width=630,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popSS.focus()
}
