
/********************************************************************

CUSTOMIZE THE FOLLOWING IF REQUIRED.

********************************************************************/


// The path to the folder of eot files

var path_to_eot ="/eot/";

// Name of the custom font that you would like to use in your CSS or Style properties.

var aprant_custom_font ="oriya4u";


/*******************************************************************

DO NOT CHANGE ANYTHING BELOW THIS LINE.

*******************************************************************/




var OSName="Unknown OS";
var browserName="Unknown browser";


if (navigator.userAgent.indexOf("Windows NT 5")!=-1) OSName="WinXP";
if (navigator.userAgent.indexOf("Windows NT 6")!=-1) OSName="Win7";
if (navigator.userAgent.indexOf("Mac")!=-1) OSName="MacOS";
if (navigator.userAgent.indexOf("X11")!=-1) OSName="UNIX";
if (navigator.userAgent.indexOf("Linux")!=-1) OSName="Linux";

if(navigator.appName.indexOf("Internet Explorer") != -1) {
 
browserName="IE";
} else {
 
browserName="NonIE";

}

if ( OSName =="WinXP") {
// code for XP Font goes here....


if(browserName=="NonIE") {


document.write("<style type='text/css'>");
document.write(" @font-face { font-family:"+aprant_custom_font +";font-style:  normal;font-weight: normal;");
document.write(" src: url("+path_to_eot+"APUniAprantWebWinXP.ttf) format('truetype') ; } ");
document.write(" </style>");

} else {

document.write("<style type='text/css'>");
document.write(" @font-face { font-family:"+aprant_custom_font +";font-style:  normal;font-weight: normal;");
document.write("   src: url("+path_to_eot+"/APUniAprantWebWinXP.eot); }");
document.write(" </style>");
}


} else {

// code for Win7 and other operating system goes here....

if(browserName=="NonIE") {

 

document.write("<style type='text/css'>");
document.write(" @font-face { font-family:"+aprant_custom_font +";font-style:  normal;font-weight: normal;");
document.write(" src: url("+path_to_eot+"APUniAprantWebWin7.ttf) format('truetype') ; } ");				          
document.write(" </style>");

} else {

document.write("<style type='text/css'>");
document.write(" @font-face { font-family:"+aprant_custom_font +";font-style:  normal;font-weight: normal;");
document.write("   src: url("+path_to_eot+"/APUniAprantWebWin7.eot); }");
document.write(" </style>");
}

}

