
function changeTitle(newTitle) { document.title = title; }



 
function alertMe() {
alert('Under Construction') ;
}

function myOpen(url, winName){
//	alert('myOpen');
//	alert(url, winName);
newWindow = window.open(url,winName,"status,menubar,height=400,width=300,resizable=1");
newWindow.focus( );	
}

function myOpen2(url, winName){
//	alert('myOpen');
//	alert(url, winName);
newWindow = window.open(url,winName,"status,menubar,height=400,width=300,resizable=1");
newWindow.focus( );	
}


// is this used ???
function loadMe() {
//alert('load');
jah('index_2.html','mainWindow');
}


// http://htmlfixit.com/resource/js-snippets/copyright_JS_ver2.html
// <body onload='javascript:write_date()'>
// <div id='copyright' style='text-align: center;'>Copyright © 2002 MyCompany</div>
function write_date()  {
    /////// Copyright HTMLfixIT.com 2003 /////////
    var thetime=new Date();
    var nyear=thetime.getYear();
    if (nyear<=99)
      nyear= "19"+nyear;

    if ((nyear>99) && (nyear<2000))
     nyear+=1900;
    var copyrt = '<strong>Copyright &copy; 1984-' + nyear +' IHS, LLC. All Rights Reserved</strong>';

////////Browser Object Detection. /////////

    // Mozilla/Netscapt/Firefox etc
    if ((document.getElementById) && (! document.all))
        {
        var cprdiv = document.getElementById('copyright');
        cprdiv.innerHTML = copyrt;
        }
    // IE4+
    else if (document.all)
        {
        document.all.copyright.innerHTML = copyrt;
        }

    // NS4
    else if (document.layers)
        {
        var ns4_layer = document.layers["copyright"];
        ns4_layer.document.open();
        ns4_layer.document.write(copyrt);
        ns4_layer.document.close();
        }
    // No final "else" because we want it do die silently if
    // there is no supported method available.
    }
	
