
function displayDate(){
    var this_month = new Array(12);
    this_month[0]  = "January";
    this_month[1]  = "February";
    this_month[2]  = "March";
    this_month[3]  = "April";
    this_month[4]  = "May";
    this_month[5]  = "June";
    this_month[6]  = "July";
    this_month[7]  = "August";
    this_month[8]  = "September";
    this_month[9]  = "October";
    this_month[10] = "November";
    this_month[11] = "December";
    var today = new Date();
    var day   = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900){
        year += 1900;
    }
    return(day+" "+this_month[month]+" " +year);
}


/*By JavaScript Kit
http://javascriptkit.com
Credit MUST stay intact for use
*/

function show2(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+" "+dn
thelement.innerHTML= displayDate()+ "&nbsp;&nbsp;&nbsp;" + ctime+""
setTimeout("show2()",1000)
}

function shortcut_hover(host)
{
 host.bgColor='#225544';
 host.style.color="#ffffff";
 host.style.borderLeftColor ="#55aa55";
 host.style.cursor = "pointer";
 window.status = host.innerHTML;
}

function shortcut_rollback(host)
{
 host.bgColor = "#223344";
 host.style.color="#dddddd";
 host.style.borderLeftColor = "#223344";
 host.style.borderBottom = "#dddddd 1px dotted";
 window.status = "";
}

function shortcut_click(hyperlink)
{
 window.open(hyperlink, '_self');
}

/*<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->*/

function onlyNewbrowsers() 
{
// browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || 
 //((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
 //if (!browser) 
 //{
 //	var answer = alert('The EEE-05 website is viewed best with IE 5.0+ or Netscape 6.0+.\nYour browser does not support.');
	
// }
 
}
// End -->



/*
 //window.status = hyperlink;
 //window.status = '';
 //!--host.setAttribute("style","border-bottom:1px solid white");
 */