
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=400,left = 852,top = 232');");
}

function popUp2(url, w, h) {

	var width = w;
	var height = h;
	myBar = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=yes';
	myOptions = 'width='+width+',height='+height+',resizeable=no';
	myFeatures = myBar+','+myOptions;
	var newWinX1 = window.open(url,'newWinX1',myFeatures);
	newWinX1.focus();
}

function popUp3(url, w, h) {

	var width = w;
	var height = h;
	myBar = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no';
	myOptions = 'width='+width+',height='+height+',resizeable=no';
	myFeatures = myBar+','+myOptions;
	var newWinX1 = window.open(url,'newWinX1',myFeatures);
	newWinX1.focus();
}
