{
var texto="www.albaiaz.com\n\n"+
"Qualquer esclarecimento ou pedido através do E-Mail:\n\n"+
"albaiaz@sapo.pt"
}

function MsgBox()
	{
		if (event.button==2)
 			{
 				alert(texto);
 			}
 	}

document.onmousedown=MsgBox

function movein(which)
{
which.style.background="#000080";
which.style.color="#FFFF00";
}

function moveout(which)
{
which.style.background="#6699CC";
which.style.color="#000080";
}

function VerificaContactos(nome,email)
	{
		if ((nome=='') || (email==''))
			{
				alert('Tem de preencher obrigatoriamente os campos Nome e E-Mail!');
			}
		else
			{
				document.pedido.submit();
			}
	}
