
// Check browser version to set style sheet
var nb_isIE = false;
var nb_isFF = false;

if(navigator.appName == "Microsoft Internet Explorer")
	nb_isIE = true;
else
	nb_isFF = true;
	
if(nb_isIE)
	document.write('<link rel="stylesheet" href="/css/ie_style.css">');
else if(nb_isFF)
	document.write('<link rel="stylesheet" href="/css/ff_style.css">');
	
document.write('<link rel="stylesheet" href="/css/main_style.css">');

function GotoUrl(urlparam)
{
	window.location=urlparam;
}