function CallPopup(whichPop,wide,high) {
/***********************************/
/**** SET URL, WIDTH, AND HEIGHT ***/
	windowURL = whichPop;
	windowWidth  = wide;
	windowHeight = high;	//700;
/***********************************/

	//SET FEATURES AND OPEN POPUP
	windowName = 'POPUP';
	windowFeatures = 'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1,screenX=100,left=100,screenY=50,top=50';
	window.open( windowURL, windowName, windowFeatures ); 
}

 function popWindow(PicName,PicWidth,PicHeight,PicTitle) {
	popupWindow = window.close
	popupWindow = window.open("", "Popup", "resizable=yes,width="+PicWidth+",height="+PicHeight, false);
	popupWindow.document.open();
	popupWindow.document.writeln("<html><title>"+PicTitle+"</title><body MARGINHEIGHT=0 MARGINWIDTH=0 LEFTMARGIN=0 TOPMARGIN=0 onBlur='self.close()'>");
	popupWindow.document.writeln("<a href=javascript:close()><img src='"+PicName+ "' border=0></a>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();
 }