// Autor: Jesus Raez Gascon
// RAGAWEBS.com
// Funciones para la pagina de inicio
function today(hoy)
{
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado")
var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
document.write(" " +dayarray[day]+", "+daym+" de "+montharray[month]+" "+year);
}
function enlacepie(pie) {
	document.write("C/Prim, 8 - 28770 - Colmejar Viejo (Madrid)- Teléfono:91-8452500  Tel/Fax: 91-8450764");
}
function enlacepie2(pie2) {
	document.write("&copy; 2006 España - SAIZ Asesores - Todos los Derechos Reservados");
}

document.onmousedown = bloquear
function bloquear(raton) {
    var mensaje = "© SAIZ ASESORES"    
    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
        }
    }
}
