// ----------------------------------------------------------------------------
// used for copyright date
// ----------------------------------------------------------------------------
var dFullDate = new Date();
var sCopyright = dFullDate.getFullYear();
// ----------------------------------------------------------------------------
// used for ads
// ----------------------------------------------------------------------------
var axel = Math.random() + "";
var ord = axel * 1000000000000000000000;
// ----------------------------------------------------------------------------
// various ways to open a window
// ----------------------------------------------------------------------------
function OpenWindow(form, ndx)
{
    var locString = form.site.options[ndx].value;
    form.site.options.selectedIndex = 0;
    top.location.href = locString;
}
// ----------------------------------------------------------------------------
function OpenSearchWindow(form, ndx)
{
    var locString = form.site.options[ndx].value;
    form.site.options.selectedIndex = 0;
    window.open(locString+form.ticker.value);
}
// ----------------------------------------------------------------------------
function openWindowATP(URL,WinName,Height,Left,Top,Width)
{
    newWindow = eval('window.open("' + URL + '","'+WinName+'","dependent=1,directories=0,height='+Height+',left='+Left+',location=0,menubar=0,personalbar=0,resizable=1,screenX='+Left+',screenY='+Top+',scrollbars=1,status=0,toolbar=0,top='+Top+',width='+Width+'")')
    newWindow.focus();
}
// ----------------------------------------------------------------------------

