<!--
 function check(campo) {
	var retorna = true;
	if (campo.email.value== "")
		retorna = false;
	else if (campo.email.value=="seu e-mail")
		retorna = false;
    if (retorna == false) {
		alert("Tecle OK ou Enter somente quando o campo de e-mail estiver preenchido corretamente !");
	}
	return retorna;
	}
function click()  
	{ 	if (event.button==2) 
		{
		alert('© O código desta página não está disponível. ');
		}
	}
	document.onmousedown=click
function janela(url) 
	{
	var x = 0;
	var y = 0;
	url = "receitas\\"+url;
	x = (screen.width - (550+10)) / 2;
	y = (screen.height - (350+50)) / 2;
	var w = window.open(url,"JanelaReceita","scrollbars=yes,status=no,toolbar=no,location=no,menu=no,width=550,height=350,screenX=" + x + ",screenY=" + y + ",left=" + x + ",top=" + y);
	}
//-->
