// JavaScript Document

function pInicial(){
    var agt=navigator.userAgent;
	msg = "Infelizmente seu navegador é incompatível, tente do método convencional, Obrigado!";
	if(agt.indexOf('Gecko')&&window.sidebar){
		alert(msg);
	}
	else if(agt.indexOf('MSIE')&&window.external){
		//document.write"this.style.behavior='url(#default#homepage)'; this.setHomePage('http://www.roupadamoda.com.br')";	
	}
	else{
		alert(msg);
	}
}

