// JavaScript Document
// fecha de la pagina
var months=new Array(13);
months[1]="Enero";
months[2]="Febrero";
months[3]="Marzo";
months[4]="Abril";
months[5]="Mayo";
months[6]="Junio";
months[7]="Julio";
months[8]="Agosto";
months[9]="Septiembre";
months[10]="Octubre";
months[11]="Noviembre";
months[12]="Diciembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
year = year + 1900;

// contactar
function opentelef()
{
var paginatel='http://www.crambo.es/col/telefono.htm';
window.open(paginatel, "CONTACTAR",'top=50,left=130,height=250,width=470,status=yes,scrollbars=no');		
return(true);
}

function opencorp()
{ 
var paginacor='#NOMBRE_SCRIPT#?TV=#TIENDA#&VP_U=B2CCLIB';
window.open(paginacor, "corporativo",'top=50,left=130,height=250,width=470,status=yes,scrollbars=no');		
return(true);
} 


