
// exit functionality
function closeMe() {
	win = top;
	win.opener = top;
	win.close();
}

function SetTopNavigationTab()
 {
 	var pathNm = window.location.pathname;
 	var pathArr = pathNm.split("/");
	var pageNm = pathArr[pathArr.length-1];
	if(pageNm.toLowerCase() == "index.aspx")
	{
		document.getElementById("home").style.color ="#0088cc";
	}
	else if(pageNm.toLowerCase() == "solutions.aspx")
	{
		document.getElementById("solutions").style.color ="#0088cc";
	}
	else if(pageNm.toLowerCase() == "services.aspx")
	{
		document.getElementById("services").style.color ="#0088cc";
	}
	else if(pageNm.toLowerCase() == "sontactus.aspx")
	{
		document.getElementById("contactus").style.color ="#0088cc";
	}
}

