// JavaScript Document



var win = null;
function PopUp(mypage,myname,w,h,scroll,stat,resize){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; // condition statement - if else etc.
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+'status='+stat+',resizable='+resize
win = window.open(mypage,myname,settings)
}

