function carrega(){

	if(navigator.userAgent.indexOf('IRIX') != -1){
		window.open("enquete.htm","index","width=370,height=275,resizable=no,scrollbars=no,menubar=no,status=0,toolbar=yes");
	}
	else if((navigator.userAgent.indexOf('Win') != -1) &&
		(navigator.userAgent.indexOf('95') != -1)){
		window.open("enquete.htm","index","width=370,height=275,top=20,left=20,resizable=no,scrollbars=no,menubar=no,status=0,toolbar=yes");
	}
	else if(navigator.userAgent.indexOf('Win') != -1){
		window.open("enquete.htm","index","width=370,height=275,top=20,left=20,resizable=no,scrollbars=no,menubar=no,status=0,toolbar=yes");
	}
	else if(navigator.userAgent.indexOf('Mac') != -1){ // Trocar Configurações
		window.open("enquete.htm","index","width=370,height=275,resizable=no,scrollbars=no,menubar=no,status=0,toolbar=yes");
	}
	else {
		window.open("enquete.htm","index","width=370,height=275,top=0,left=0,resizable=no,scrollbars=no,menubar=no,status=0,toolbar=yes");
	}
	

}