Ciao a tutti,
ho trovato questo script sul sito html.it.
Sui link ho messo questo:
<a href="#" onClick="popup_new('new1.htm')">
Volevo fare in modo che quando apro la popup avesse lo scrollbars
<script type="text/javascript">
<!--
function popup_new(newID){
var w = 400;
var h = 400;
var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
window.open(newID,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
Ciao