// A JavaScript to handle hiding/showing the div tag listing document language versions

// Constructs an instance of the browser detector object
function Is()
{
	agent = navigator.userAgent.toLowerCase();
	this.major = parseInt(navigator.appVersion);
	this.minor = parseFloat(navigator.appVersion);
	this.ns = ((agent.indexOf('mozilla') != -1) && ((agent.indexOf('spoofer') == -1) && (agent.indexOf('compatible') == -1)));
	this.ns4 = (this.ns && (this.major == 4));
	this.ns6 = (this.ns && (this.major >= 5));
	this.ie = (agent.indexOf("msie") != -1);
	this.ie3 = (this.ie && (this.major < 4));
	this.ie4 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.0") == -1));
	this.ie5 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.0") != -1));
	this.ie55 = (this.ie && (this.major == 4) && (agent.indexOf("msie 5.5") != -1));
	this.ie6 = (this.ie && (agent.indexOf("msie 6.0")!=-1) );
}

// Create a new a browser-detection object
var is = new Is();

// Toggles the display of the element with the id attribute specified by el
function showLang(el)
{
	// The browser element which needs to be shown/hidden
	var element = document.getElementById(el);

	// Show the element if hidden, otherwise display it
	if(!element.style.display || element.style.display == "none")
		element.style.display = "block";
  	else
    		element.style.display = "none";
}
function showSelectedStatus() 
{  
  alert("hi");
} 

