function history_back()
{
 	if (navigator.appName == "Microsoft Internet Explorer")
 	{
 	frameCENTER.history.back();
 	frameTOP.history.back();
 	frameLEFT.history.back();
 	} else {
	 	frameCENTER.history.go(-2);
 		frameTOP.history.go(-2);
 		frameLEFT.history.go(-2);
 	}
}

function popup(caminho,nome,largura,altura,rolagem){
	var esquerda = 0;
	var cima = 0;
//	var largura = screen.width - 10;
//	var altura = screen.height - 70;
	var esquerda = (screen.width - largura) / 2;
	var cima = (screen.height - altura) / 2 -50;
	window.open(caminho,nome,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + rolagem + ',resizable=no,copyhistory=no,top=' + cima + ',left=' + esquerda + ',width=' + largura + ',height=' + altura);
	//popup('proc/procIndicarProduto.php','logisticaMaster','750','550','yes');
}

// função para verificar e-mail
function check_email(e) {
	ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";
	
	for(i=0; i < e.length ;i++){
 	if(ok.indexOf(e.charAt(i))<0){
	return (false);
 	}
 }
 
// if (document.images) {
 re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
 re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
 if (!e.match(re) && e.match(re_two)) {
 return (-1);
 }
// }
}