var u = document.URL;
if(u.indexOf('ourkarnataka.com') == -1)
{
document.location.href='http://www.ourkarnataka.com';
}

//bVer =  parseInt(navigator.appVersion);
bVer = navigator.appVersion.substring(0,1);

if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Windows", 0) != -1 && bVer >=4 )
{
	//Internet Explorer 4.0 &above on Windows.        
	document.writeln("<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=x-user-defined\">");
}
else
{
	//Netscape or other versions of IE.	
        	document.writeln("<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\">");
}

if (bVer >= 4)
{
	if (navigator.appName == "Netscape")
	{
		//If Netscape, then we use PFR files.
		document.write ("<link rel=fontdef src=\"http://www.ourkarnataka.com/baraha/brhknd.pfr\">\n");
		document.write ("<link rel=fontdef src=\"http://www.ourkarnataka.com/baraha/brhvjy.pfr\">\n");
		document.write ("<link rel=fontdef src=\"http://www.ourkarnataka.com/baraha/brhkai.pfr\">\n");
	}
	else
	{
		//If IE, then we use the EOT files.		

		//BRH Kannada
		document.write ("<style type=\"text/css\">");

		document.write (" @font-face {");
		document.write (" font-family: BRH Kannada;");
		document.write (" font-style: normal;");
		document.write (" font-weight: normal;");
		document.write (" src: url(\"http://www.ourkarnataka.com/baraha/BRHKANN0.eot\")");
		document.write ("}");
		document.write ("<BR>");

		//BRH Vijay
		document.write (" @font-face {");
		document.write (" font-family: BRH Vijay;");
		document.write (" font-style: normal;");
		document.write (" font-weight: normal;");
		document.write (" src: url(\"http://www.ourkarnataka.com/baraha/BRHVIJA0.eot\")");
		document.write ("}");
		document.write ("<BR>");
	
		//BRH Kailasam
		document.write (" @font-face {");
		document.write (" font-family: BRH Kailasam;");
		document.write (" font-style: normal;");
		document.write (" font-weight: normal;");
		document.write (" src: url(\"http://www.ourkarnataka.com/baraha/BRHKAIL0.eot\")");
		document.write ("}");

		document.write ("</style>");
	}
}
else
{
	//refer to some information
	location.href="http://www.baraha.com/fonts/fonthelp.htm";
}


