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=750,height=600');");}
function openWin( windowURL,width,height ) { window.open( windowURL, 'Viewer', 'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menuBar=no,scrollBars=no,resizable=no' ) ; } 


	var popUpWin=0;
	function popUpWindow_map(URLStr,width, height)
	{
 		if(popUpWin)
 		{
   			if(!popUpWin.closed) popUpWin.close();
 		}
 		popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height);
	}

