function virtual_pop_up(url,nome,w,h,resize,barrastato,barraindirizzi,barrastrumenti,scroll,centered,title,image){if (centered == 1){larghezza = (screen.width - w) / 2;altezza = (screen.height - h) / 2;}else{larghezza = 0;altezza = 0;}props = 'height='+h+',width='+w+',top='+altezza+',left='+larghezza+',resizable='+resize+',status='+barrastato+',location='+barraindirizzi+',toolbar='+barrastrumenti+',scrollbars='+scroll+'';finestra = window.open(url, nome, props, centered);finestra.document.write('<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"../js/css.js\"></head><body bgcolor=\"#781D2C\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><br><center><img border=\"0\" src='+image+' width=\"400\" height=\"300\" alt=\"'+title+'\"></center><br><center><a style=\"background-color: transparent; background-image: none; font-family: Tahoma, Verdana, Arial, Helvetica; font-weight: normal; font-size: 7.5pt; color: #FFFFFF; margin-top: 4px; text-decoration: none;\" href=\"javascript:self.close();\"><span style=\"font-weight: bold;\">Chiusura finestra attiva</span></a></center></body></html>');finestra.focus();}
