
// Store the date in a variable
d_year = new Date()
dateText_y = ""

// Get the current year; if it's before 2000, add 1900
if (d_year.getYear() < 2000) 
    year = (1900 + d_year.getYear())
else 
    year = (d_year.getYear())
	
dateText_y += year


function openMR(path) {
popMR=window.open(path,"popMR","height=450,width=450,scrollbars=yes,resizable=yes,location=0,screenx=0,screeny=0,left=0,top=0");
popMR.focus()
}

