<script language="javascript">
function popWin(url,w,h) {
var winl=(screen.width-w) / 2;
var wint=(screen.height-h) / 2;
var newWindow
newWindow = window.open(url,"nWin","scrollbars=yes,status=no,location=no,toolbar=no,menubar=no,directories=no,resizable=yes,width=250,height=220,top="+wint+",left="+winl+"")
}
</script>