function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}
	
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=640,height=480,left = 300,top = 200');");
}

function pop475(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=475,height=400,left = 300,top = 200');");
}

function popUpDetails(URL) {
day = new Date();
id = "temp";
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=565,height=450,left = 150,top = 100');");
}

function popWindow(URL,width,height) {
day = new Date();
id = "temp";
if (width < 550) {
	width = 550;
	} else {
	width = width;
	}
w = eval(width) + 50;
h = eval(height) + 175;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + w + ",height=" + h + ",left = 150,top = 100');");
}