function openWin(imgWidth,imgHeight,url,name) {
imgWidth += 15;
imgHeight += 25;
var temp = window.open("belle",name,"screenX=100,screenY=20,top=100,left=20,toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + imgWidth + ",height=" + imgHeight + ",left=20,top=20,screenX=20,screenY=20");
	temp.document.open("text/html","replace");
	temp.document.write("<html><body bgcolor=\"#bac8d7\" link=\"#333366\"><div align=\"right\"><p><font face=\"helvetica,arial\"><a href=\"javascript:this.close()\"><b>Close Window</b></a></font></p><p><img src=\"" + url + "\" border=\"3\"></p><div align=\"right\"><p><font face=\"helvetica,arial\"><a href=\"javascript:this.close()\"><b>Close Window</b></a></font></p></div></body></html>");
	temp.document.close();
	temp.focus();
return;
}


