Qualche anima pia mi sa dire perchè questo javascript che mi apre un popup non funziona solo su explorer?
function createPopup(image,ww,hh)
{
var winleft = (screen.width - ww) / 2;
var contentWindowBEGIN='<html><head><title>Image</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><img src="';
var contentWindowEND='" alt="" onclick="window.close()" style="cursor: pointer;"></body></html>';
var winUp = (screen.height - hh) / 2;
var style = 'left='+winleft+',top='+winUp+', width='+ww+', height='+hh+', status=no, menubar=no, toolbar=no, scrollbars=0';
newwin=window.open("", "", style);
newwin.document.write(contentWindowBEGIN+image+con tentWindowEND);
}
Grazie mille!!!!

