Cosa sbaglio in questo codice che dovrebbe aprire una pagina asp all'interno di una finestra popup?
codice:
<SCRIPT LANGUAGE=Javascript> 

function Popup(larg,alte,url) 
{ 
var w = screen.width; 
var h = screen.height; 
var x = Math.round(w / 2) - Math.round(larg / 2); 
var y = Math.round(h / 2) - Math.round(alte / 2); 
window.open(url,'','width='+larg+',height='+alte+',top='+y+',left='+x+''); 
} 

</SCRIPT> 

');">Link