var d=new Date();
var nombremes=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var fechahoy = d.getDate() + " de " + nombremes[d.getMonth()] + " de " + d.getFullYear();

function rollOver( prd ){	
	//alert(prd);
	var imaxe = document.getElementById(prd);
	src = new String( imaxe.src );
	//alert(src.replace( ".png","_az.png" ))		
	imaxe.src=src.replace( "out.png" ,".png");
}

function rollOut( prd ){		
	var imaxe = document.getElementById(prd);
	src = new String( imaxe.src);		
	imaxe.src=src.replace( ".png","out.png");
}

function EnviaConIntro()
{
/*Esta funcion funciona con KeyPress y recibe como parámetro el nombre del formulario */
//Primero debes obtener el valor ascii de la tecla presionada
var key=window.event.keyCode;

//Si es enter(13)
if(key==13)
//Se pasa el foco a la caja destino
document.inicio.submit();
} 

function EnviaBuscConIntro(valor)
{
/*Esta funcion funciona con KeyPress y recibe como parámetro el nombre del formulario */
//Primero debes obtener el valor ascii de la tecla presionada
var key=window.event.keyCode;
//Si es enter(13)
if(key==13)
{
 //Se pasa el foco a la caja destino
 nombresproductos(valor);
 return false;
}
} 




<!--
/********************************************************************************
Copyright (C) 1999 Thomas Brattli
This script is made by and copyrighted to Thomas Brattli at www.bratta.com
Visit for more great scripts. This may be used freely as long as this msg is intact!
I will also appriciate any links you could give me.
********************************************************************************/
//Default browsercheck, added to all scripts!
function checkBrowser(){
	this.ver=navigator.appVersion
	this.dom=document.getElementById?1:0
	this.ie6=(this.ver.indexOf("MSIE 6") > -1 && this.dom)?1:0;this.ie5=(this.ver.indexOf("MSIE 5") > -1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns5)
	return this
}
bw=new checkBrowser()
-->


