<!-- hide this script from non-javascript-enabled browsers
var otherOnes=null;

function popUpWindowHoriz(theURL,winName,h) {
        h='WIDTH=600,HEIGHT=450,top=10,left=50,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,resizable=no'
        otherOnes=window.open(theURL,winName,h);
        if (otherOnes.open && !otherOnes.closed) otherOnes.focus();
}

function popUpWindowVert(theURL,winName,v) {
        v='WIDTH=450,HEIGHT=600,top=10,left=50,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,resizable=no'
        otherOnes=window.open(theURL,winName,v);
        if (otherOnes.open && !otherOnes.closed) otherOnes.focus();
}
//-->