// 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/Nicolasa Fernandez, 15 - 28400 - Villalba (Madrid)- TLF: 606514994 - 619257381");
}
function enlacepie2(pie2) {
	document.write("&copy; 2007 España - PROGARDEN, SL - Todos los Derechos Reservados");
}

function contacto1(carta1){
var usuario = "progarden";
var sitio = "progarden.es";
var enlaces = usuario + "@" + sitio;
document.write("<a class=\"progarden\" href=" + "mail" + "to:" + usuario +
"@" + sitio + "?subject=informacion" + ">" + enlaces + "</a>")
}

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