metti questo codice nell'HEAD della HOME

codice:
<script> 
function popup(src,w,h) {
	var l = Math.round((screen.width-w)/2);
	var t = Math.round((screen.height-h)/2);
	return window.open(src, 'pop', 'scrollbars=no,resizable=no,width='+ w +',height='+ h +',left='+ l +',top='+ t +',status=no,location=no,toolbar=no'); 
}

p = popup("PAGINA.HTML",500,300);
</script>
500 = larghezza
300 = altezza