// JavaScript Document
var browser=navigator.appName;
var c=browser.indexOf("Microsoft Internet Explorer");
if(c==-1)
{    replaceHTML();
}
	
function replaceHTML()
{
   	var tag=document.getElementsByTagName('html');
	tag[0].removeAttribute('xmlns');
   	document.removeChild(document.firstChild)
	//document.removeChild(tag[0]);
	//var newtag=document.createElement('html');
	  //newtag.setAttribute('xlmns','http://www.w3.org/1999/xhtml');
   			//document.appendChild(newtag);
}	

