var xmlhttp;

function LoadXML(metodo,url,objeto)
{
	if(window.XMLHttpRequest){
		xmlhttp = new XMLHttpRequest();
	}
	if(window.ActiveXObject){
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=objeto;
	xmlhttp.open(metodo,url,true);
	xmlhttp.send(null);
}

function AbreJanela(url,nome,top,left,width,height)
{
	window.open(url,nome,"top="+top+",left="+left+",width="+width+",height="+height+",status=0,menu=0,location=0");
}





/*============VERFICACAO DO IE================*/
	var version = 999;
    	if (navigator.appVersion.indexOf("MSIE") != -1)
      	
      	version = parseFloat(navigator.appVersion.split("MSIE")[1]);
	if (navigator.appName == "Microsoft Internet Explorer")  
	{  
		if(version < 7)
		{
			window.location="http://www.colegiopenhadefranca.com.br/verificacao.html";  
		}
				
    	}  		


