// JavaScript Document

function protect_imagen(e) {
var msg = "Nuestras fotografias tienen derechos reservados. \nPara licencia o impresiones haga clic en contacto. \nsvenka design studio - www.svenka.com";
if (navigator.appName == 'Netscape' && e.which == 3) {
	alert(msg);
	return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
	alert(msg);
	return false;
}
else return true;
}

function protect_images() {
	if(document.images) {
	    for(i=0;i<document.images.length;i++) {
			document.images[i].onmousedown = protect_imagen;
			//document.images[i].onmouseup = protect_imagen;
		}
	}
}
