<!--
function openPopupWindow(theLink,width,height) {
    if (width=="") width=400; if (height=="") height=490;
    x = (screen.width/2) - (width/2);
    y = (screen.height/2) - (height/2)-30;

    newPopupWindow = window.open(theLink,'newPopupWindow','width=' + width + ',height=' + height +
    ',left=' + x+',screenX=' + x + ',top=' + y + ',screenY=' + y +
    ',toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no')
    newPopupWindow.moveTo(x, y);
}
//-->

