function OpenWinHor( url )
{
windowHeight = 680;
windowWidth = 960; 

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 OpenWinVert( url )
{
windowHeight = 870;
windowWidth = 730; 

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 OpenWinHorRelated( url )
{
windowHeight = 680;
windowWidth = 960; 

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 OpenWinVertRelated( url )
{
windowHeight = 870;
windowWidth = 730; 

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();
}
