// JavaScript Document

function OpenWinHor( url )
{
  windowHeight = 660;
  windowWidth = 900; 

  var newWindow = window.open( url, "popUp", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=yes" );
    newWindow.moveTo( (screen.width-windowWidth)/2, (screen.height-
windowHeight)/2 );
    newWindow.focus();
}

function OpenWinMov( url )
{
  windowHeight = 500;
  windowWidth = 660; 

  var newWindow = window.open( url, "popUp", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=yes,resizable=yes" );
    newWindow.moveTo( (screen.width-windowWidth)/2, (screen.height-
windowHeight)/2 );
    newWindow.focus();
}

function OpenWinDir( url )
{
  windowHeight = 700;
  windowWidth = 760; 

  var newWindow = window.open( url, "popUp", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=yes,resizable=yes" );
    newWindow.moveTo( (screen.width-windowWidth)/2, (screen.height-
windowHeight)/2 );
    newWindow.focus();
}


function OpenWinRelRep( url )
{
  windowHeight = 760;
  windowWidth = 720; 

  var newWindow = window.open( url, "Related", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=yes,resizable=yes" );
    newWindow.moveTo( (screen.width-windowWidth)/2, (screen.height-
windowHeight)/2 );
    newWindow.focus();
}


function OpenFullScreen( url )
{
  windowHeight = screen.height;
  windowWidth = screen.width;

  var newWindow = window.open( url, "popUp", "height=" +
windowHeight + ",width=" + windowWidth + ",scrollbars=no" );
    newWindow.moveTo( (screen.width-windowWidth)/1, (screen.height-
windowHeight)/1 );
    newWindow.focus();
}

