// JavaScript Document
	var popUpWin1=0;
	function popUpWin(URL, left, top, width, height){
		if(popUpWin1){
			if(!popUpWin1.closed) popUpWin1.close();
		}
		 popUpWin1 = open(URL, 'popUpWin1', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	}		
