// ********************************************************************
//	This file provides the detection of the browser and the linking
//	to the appropriate style sheet
//
// ********************************************************************

// Browser detection

var detect = navigator.userAgent.toLowerCase();
var browser;

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	return place;
}


if (checkIt('msie')) browser = "IE"
else if (!checkIt('compatible'))
{
	browser = "NS"
}
else browser = "";



if (browser=="IE"){
	document.write('<link href="..\\Style\\cores_links.css" rel="stylesheet" type="text/css">');
}
else if (browser=="NS"){
	document.write('<link href="..\\style\\cores_links_nn.css" rel="stylesheet" type="text/css">');
}
else {
	document.write('<link href="..\\style\\cores_links_nn.css" rel="stylesheet" type="text/css">');
}
