<!--
	if (screen) {
		 rightPos = screen.width-900
	}

function nuevaVentana(fotos) {
	bookWindow = window.open(fotos, "fotosWin","width=450,height=300,status=yes,menubar=no,resizable=yes,scrollbar=yes,top=0,left=0")
	bookWindow.focus()	
	}

if (document.all) {
}
else if (document.getElementById) { 
    document.captureEvents(Event.MOUSEDOWN)
}
else if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN)
}

document.onmousedown = bloquear
function bloquear(raton) {
    var mensaje = "© CONSTRUREY.COM"    
    if (document.all) {
        if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
		{
            alert(mensaje)
            return false
        }
    }
    else if (document.getElementById) { 
        if (raton.which == 3 ) {
            alert(mensaje)
            return false
        }
    }
    else if (document.layers) {
        if (raton.which == 3) {
            alert(mensaje)
            return false
        }
    }
}

//-->                             
