	<!--

	var owin = null;


	function ShowPic(winName,sURL,iWidth,iHeight) 
	{
		
		if(iWidth > 800) 
		{
			sAttribs="width=800,height=" + (iHeight + 15) + ",scrollbars=yes,resizable=yes,status=0";
		} 
		else 
		{
			sAttribs="width=" + (iWidth+20) + ",height=" + (iHeight + 25) + ",scrollbars=no,resizable=yes,status=0";
		}	
			
		//window.alert(sURL);																				
		//		window.alert(winName);
		//		window.alert(sAttribs);
		owin = window.open(sURL,"_blank",sAttribs);	
																								
		if (owin !=  null) 
		{
			if (owin.opener == null) 
			{
				owin.opener = self;
			}
		}		
	}
	// -->
