function picPopUp(source,title,w1,h1){
	var thePage = ""
	thePage += "<html><head><title>" + title + "</title><script language='JavaScript' src='http://images.ibsys.com/sh/scripts/picPopUp.js'></script></head><body marginheight='0' marginwidth='0' topmargin='0' bottommargin='0' leftmargin='0' rightmargin='0'><div align='center'>"
	thePage += "<img  src='"
	thePage += source		
	thePage += "' alt='"+title+"' border='0' width='" +w1+ "' height='" + h1 + "' /><br /></div>"
	thePage += "</body></html>"
	var arg = "toolbar=no,status=no,location=no,menubar=no,height="+h1+",width="+w1+",scrollbars=no"
	var newWind = window.open("","newWin",arg);
	newWind.document.write(thePage)
	newWind.focus();
	newWind.document.close()	
}
