/* document.oncontextmenu = function() {
	alert('Just a reminder, all images are copyrighted by david@lacina.net');
	return false;
} */

document.ondragstart = function() {
	return false;
}

/*
document.onselectstart = function() {
	return false;
} */

function Validate_Email_Fields() {
	var val, p, errors='';

	val = document.emailForm.email.value ;
	p = val.indexOf('@');
    if ( p<1 || p== (val.length-1) ) 
	{
		window.alert(val + " is not valid adress");
		document.emailForm.email.focus();
		errors='error';
	}
	
	document.MM_returnValue = ( errors == '' );
}

function clearField() {
	if (document.emailForm.email.value == "e-mail") {
		document.emailForm.email.value = "";
	}
}

function click() {
	if (event.button == 2) {
		alert('Just a reminder, all images are copyrighted by david@lacina.net');
	}
}

function click_both_buttons() {
	if (event.button==2 || event.button==3) {
		alert('Just a reminder, all images are copyrighted by david@lacina.net');
	}
}