01.
echo
'<script type="text/javascript">'
02.
,'
function
popup(url,name,windowWidth,windowHeight){
03.
myleft=(screen.width)?(screen.width-windowWidth)/2:100;
04.
mytop=(screen.height)?(screen.height-windowHeight)/2:100;
05.
properties =
"width="
+windowWidth+
",height="
+windowHeight;
06.
properties +=
",scrollbars=yes, top="
+mytop+
",left="
+myleft;
07.
window.open(url,name,properties);
08.
}'
09.
,
'popup("submit.php","","305","190");'
10.
,
'</script>'
;