//You are not allowed to copy this script
//This script is by Anuj Bhargava
<!-- Begin
// Browser Detect

bName = navigator.appName; //detect for Netscape 3+ or IE 4+

bVer = parseInt(navigator.appVersion);

if ((bName == "Netscape" && bVer >= 3) ||

	(bName == "Microsoft Internet Explorer" && bVer >=4)) br = "n3";

else br = "n2";

// Create image objects, preload all active and inactive images.

if (br== "n3") {

// Active Spotlight Index
	img01on = new Image();
	img01on.src = "../_images/englishan.gif";
       img02on = new Image();
	img02on.src = "../_images/frenchan.gif";
       img03on = new Image();
	img03on.src = "../_images/germanan.gif";
       img04on = new Image();
	img04on.src = "../_images/italianan.gif";
       img05on = new Image();
	img05on.src = "../_images/spanishan.gif";
       img06on = new Image();
	img06on.src = "../_images/portuguesean.gif";
            
// Inactive Spotlight Index
	img01off = new Image();
	img01off.src = "../_images/english.gif";
       img02off = new Image();
	img02off.src = "../_images/french.gif";
       img03off = new Image();
	img03off.src = "../_images/german.gif";
       img04off = new Image();
	img04off.src = "../_images/italian.gif";
       img05off = new Image();
	img05off.src = "../_images/spanish.gif";
       img06off = new Image();
	img06off.src = "../_images/portuguese.gif";
}

function imgAct(imgName) {

	if (br == "n3") {
		document[imgName].src = eval(imgName + "on.src");
	}
}
function imgInact(imgName) {
	if (br == "n3") {
		document[imgName].src = eval(imgName + "off.src");
	}
}

// End -->

