function nw(url,w,h) {
var tit = "Detail";
var scroll = 'scrollbars=no';
	h = h+30;	

if (h > 650) { scroll='scrollbars=yes';	}
neww =  window.open('',tit,'width='+w+',height='+h+'left=5,top=5,resizable=no,'+scroll+',titlebar=no,toolbar=no,fullscreen=no');

if (neww){
    neww.focus();
    neww.document.write('<html><head><title>"'+tit+'"</title><style type="text/css">body {margin: 0; padding: 0; text-align: center;} img {border: 0;}</style></head><body onload="fotoInit()">');
	h = h-40;
    neww.document.write('<script type="text/javascript">function fotoInit() {window.focus(); var img = new Image(); img.src = "'+url+'"; }</script>');	
    neww.document.write('<a href="javascript:self.close()"><img src="'+url+'"></a>');
	neww.document.write('<span style="font-size: 12px; color: #555555; font-weight: bold;"> Close by clicking on the picture</span>')
    neww.document.write('</body></html>'); 
    neww.document.close();
  }
}


