var newWind;

function popimg(cPicture, cDescription, nW, nH) {
		var output;
		nW+=100;
		nH+=105;
		//newWind=window.open("","wImg","height="+nH+",width="+nW+", scrollbars=no, resizable=no, top=15, left=25");
		newWind=window.open("","","height="+nH+",width="+nW+", scrollbars=no, resizable=no, top=15, left=25");
		nW-=100;
		nH-=105;
    	output="<html><head>\n"
    	output+="<title>villacertano</title>\n"
    	output+="</head>\n"
		output+="<body bgcolor=#ffffcc text=#ffffcd><center>\n"
		output+="<table border=0 cellspacing=0 cellpadding=0><tr><td align=center>\n"
        output+="<a href='javascript:window.close()'><img src='"+cPicture+"' border=0 width="+nW+" height="+nH+"></a>\n"
	 	output+="</td></tr><tr><td>\n"
	 	output+="<font style='color:#993300;font:12px Georgia,Times New Roman,Times,serif;font-weight:bold;'>"+cDescription+"</font>\n";
	 	output+="</td></tr></table>\n"
	 	output+="</center></body></html>\n"
		newWind.document.write(output);
		newWind.document.close();
		newWind.focus();		 
}