


function open_Popup_some(name, winName, winWidth, winHeight) {
	if (winWidth == null) winWidth = 500;
	if (winHeight == null) winHeight = 350;
	var newWindow = window.open(name, winName, 'width=' + winWidth + ',height=' + winHeight + ',scrollbars=no,resizable=no,toolbar=no,status=no,menubar=no');
}
function open_Window(name, winName, winWidth, winHeight) {
	if (winWidth == null) winWidth = 500;
	if (winHeight == null) winHeight = 350;
	var newWindow = window.open(name, winName, 'width=' + winWidth + ',height=' + winHeight + ',scrollbars=yes,resizable=yes,toolbar=no,status=yes,menubar=yes');
}
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=1,resizable=0,width=640,height=420,left = 100,top = 100');");
}
