// Pop-up Window
// Inside the parenthesis the order goes URL, window name, width, height, position from left, position from top
// Note that by giving each popup window a different name each page will open in a seperate popup window
function myPopup(url,windowname,w,h,x,y){
window.open(url,windowname,"resizable=no,toolbar=no,scrollbars=yes,menubar=no,status=no,directories=no,width="+w+",height="+h+",left="+x+",top="+y+"");
}

