
function Center(url,theWidth,theHeight)
{
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var aspects='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=n";
theWin=window.open(url,'',aspects);
}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

/* popup larger images */
var popupwindow = 0;
function popUpImage(url, titlebar) {
var popupwindow = 0;
if (popupwindow.location && !popupwindow.closed) 
{ 
popupwindow.focus();
popupwindow.document.clear() 
} 
else 
{
popupwindow=window.open('','','width=480,height=560,resizable=1');
popupwindow.focus();
} 
popupwindow.document.writeln('<html> <head> <title>'+ titlebar +'<\/title> <\/head> <body onblur=\"self.close()\" bgcolor=\"silver\"><center>'); 
popupwindow.document.writeln('<img src=' + url + '>'); 
popupwindow.document.writeln('<a href=\"#\" onClick=\"javascript:self.close()\"><p style=\"font-family: Verdana, Arial, sans-serif; font-size: 10px; color: black;\">Close this window</p></a>');
popupwindow.document.writeln('<\/center>');
popupwindow.document.writeln('<\/body> <\/html>');  
popupwindow.document.close(); 
}