// JavaScript Document

function landscapeWindow(theURL) {
x=(screen.width/2)-320;
y=(screen.height/2)-240;
  window.open(theURL, '','width=550,height=400,top='+y+',left='+x+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function portraitWindow(theURL) {
x=(screen.width/2)-240;
y=(screen.height/2)-320;
  window.open(theURL, '','width=400,height=550,top='+y+',left='+x+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
}