﻿var browserName=navigator.appName;
if (browserName=="Microsoft Internet Explorer")
{
	document.write('<link rel="stylesheet" href="m2mIE.style.css" type="text/css">')
}
else
{
	document.write('<link rel="stylesheet" href="m2mFX.style.css" type="text/css">')
} 


function createXmlHttpObject()
{
	var xmlHttp = null;
	if (window.XMLHttpRequest)
	{
		xmlHttp = new XMLHttpRequest();  
	}
	else if (window.ActiveXObject) 
	{
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {}
		}
	}
	return xmlHttp;
} 
	
function loadHighlight(num){
	if (num == 1){
		document.getElementById("homeBtn").style.borderBottomWidth = "6px";
	}	
	else if (num == 2){
		document.getElementById("newsBtn").style.borderBottomWidth = "6px";
	}	
	else if (num == 3){
		document.getElementById("seminarBtn").style.borderBottomWidth = "6px";
	}	
	else if (num == 4){
		document.getElementById("sponsorsBtn").style.borderBottomWidth = "6px";
	}	
	else if (num == 5){
		document.getElementById("contactBtn").style.borderBottomWidth = "6px";
	}	
	else{
		removeHighlight(0);
	}
}

function removeHighlight(num){
	if (num == 1){
		document.getElementById("homeBtn").style.borderBottomWidth = "2px";
	}	
	else if (num == 2){
		removeHighlight();
		document.getElementById("newsBtn").style.borderBottomWidth = "2px";
	}	
	else if (num == 3){
		removeHighlight();
		document.getElementById("seminarBtn").style.borderBottomWidth = "2px";
	}	
	else if (num == 4){
		removeHighlight();
		document.getElementById("sponsorsBtn").style.borderBottomWidth = "2px";
	}	
	else if (num == 5){
		removeHighlight();
		document.getElementById("contactBtn").style.borderBottomWidth = "2px";
	}	
	else{
		document.getElementById("homeBtn").style.borderBottomWidth = "2px";
		document.getElementById("newsBtn").style.borderBottomWidth = "2px";
		document.getElementById("seminarBtn").style.borderBottomWidth = "2px";
		document.getElementById("sponsorsBtn").style.borderBottomWidth = "2px";
		document.getElementById("contactBtn").style.borderBottomWidth = "2px";
	}
	
}
