<!-- Hide from old browsers
 // Detect Macintosh
 if (navigator.appVersion.lastIndexOf('Mac') != -1){
 if (navigator.appName == "Netscape") {
    // Detect Netscape 6.x
    if (parseInt(navigator.appVersion) >= 5) {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/main.css>");
    }
	else
	document.writeln ("<link rel=stylesheet type=text/css href=styles/mac.css>");
	}
 else
	if ((navigator.userAgent.indexOf("MSIE 5") != -1) || (navigator.userAgent.indexOf("MSIE 5.0") != -1) || (navigator.userAgent.indexOf("MSIE 5.5") != -1)) {
		document.writeln ("<link rel=stylesheet type=text/css href=styles/main.css>");
	}
	else
	document.writeln ("<link rel=stylesheet type=text/css href=styles/mac.css>");
}
else
{
// Detect all versions of Netscape
if (navigator.appName == "Netscape") {
    // Detect Netscape 4.x
    if (navigator.appVersion.substring(0,1)=="4") {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/nsmain.css>");
    }
    // Detect Netscape 3.x
    else if (navigator.appVersion.substring(0,1)=="3") {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/nsmain.css>");
    }
    // Detect Netscape 2.x
    else if (navigator.appVersion.substring(0,1)=="2") {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/nsmain.css>");
    }
    // Handle the remainder of Netscape versions
    else {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/nsmain.css>");
    }
}
// Detect all versions of Microsoft Internet Explorer
else if (navigator.appName == "Microsoft Internet Explorer") {
    // Detect Microsoft Internet Explorer 4.x
    if (navigator.appVersion.substring(0,1)=="4") {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/main.css>");
    }
    // Detect Microsoft Internet Explorer 3.x
    else if (navigator.appVersion.substring(0,1)=="3") {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/main.css>");
    }
    // Handle all other Microsoft Internet Explorer versions
    else {
        document.writeln ("<link rel=stylesheet type=text/css href=styles/main.css>");
    }
}
}
function contact(){
window.open("contact_page.htm", "CONTACT", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=600,height=525");
}
// Stop hiding from old browsers -->
