function popUpShowLargeImageH(URL) {
	id=1
	windowName = eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480');");
	windowName.resizeTo(640,480);
	windowName.focus();
}	

function popUpShowLargeImageV(URL) {
	id=1
	windowName = eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=640');");
	windowName.resizeTo(480,640);
	windowName.focus();
	}