/*
function openPict(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=yes,resizable=yes,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><head>');
	newWindow.document.write('<title>'+alt+'</title>');
	newWindow.document.writeln('<script language="JavaScript">');
	newWindow.document.writeln('function reloadimg () {');
	newWindow.document.writeln('self.resizeTo (document.immagine.img.width + 40, document.immagine.img.height + 40);');
	newWindow.document.writeln('}');
	newWindow.document.writeln('</script>');
	newWindow.document.writeln('</head>');
	newWindow.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close();" onload="self.reloadimg();">');
	newWindow.document.writeln('<form name="immagine">');
	newWindow.document.write('<img src=\"'+imageName+'\" id="img">');
	newWindow.document.writeln('</form>');
	newWindow.document.write('</body>');
	newWindow.document.write('</html>');
	newWindow.document.close();
	newWindow.focus();
}

function openImg(idh,j,w,h) {
	imgpop = window.open('zoom.php?idh='+idh+'&j='+j+'&w='+w+'&h='+h);
}


function openProf(id,n) {
	imgpop = window.open('zoom.php?id='+id+'&n='+n,'ProfiloZoom','width=50,height=50,left=10,top=10,status=no,resizable=yes, scrollbars=yes');
}

function openBH(bhimg) {
	imgpop = window.open('zoom.php?idbh='+bhimg,'ProfiloZoom','width=50,height=50,left=10,top=10,status=no,resizable=yes, scrollbars=yes');
}
*/
function modImg(id,n,nome) {
	URL = 'update-img.php?id='+id+'&n='+n+'&nome='+nome;
	window.location = URL;
}

