<!-- hide script from old browsers

		
// Pop up window function
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2-40;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


// Expanding menu function
function toggle(list) {
var listElementStyle=document.getElementById(list).style;
if (listElementStyle.display=="none"){ 
listElementStyle.display="block";}
else{
listElementStyle.display="none";} 
}


// Hide status bar msg function
function hidestatus() {
var statusmsg="";
window.status=statusmsg
return true
}


// Current year function
function currentyear() {
var dateObj = new Date();
var date = dateObj.getDate();
var fyear = dateObj.getYear();
if (fyear < 2000) 
fyear = fyear + 1900
document.write(fyear)
}


// Generic message function
function genericmessage() {
document.write("More information coming soon...")
}


// Slide show function
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}


// External links function 
function externalLinks() { 
if (!document.getElementsByTagName) return; 
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) { 
var anchor = anchors[i]; 
if (anchor.getAttribute("href") && 
anchor.getAttribute("rel") == "external") 
anchor.target = "_blank"; 
} 
} 
window.onload = externalLinks;



// end hiding script from old browsers -->