﻿// JScript File
function over(a)
{
   // alert("paso");
    var url = a.src;
    var b= new Array;
    b = url.split('-');
  //  alert(b);
    var c=new Array;
    c=b[1].split('.');
    if(c[0]=='On')
    {
        a.src=b[0] + '-Off.' + c[1];
    }
    else
    {
        a.src=b[0] + '-On.' + c[1];
    }
  //  alert(a.src);
}
function out(a)
{
    var url = a.src;
    var b= new Array;
    b = url.split('-');
  //  alert(b);
    var c=new Array;
    c=b[1].split('.');
   if(c[0]=='On')
    {
        a.src=b[0] + '-Off.' + c[1];
    }
    else
    {
        a.src=b[0] + '-On.' + c[1];
    }
   // alert(a.src);
}
function OverTexto(a)
{

	a.style.color = "#000000";
	
}
function OutTexto(a)
{
    a.style.color = "Gray";
   
}
function popmeWin(arg,alto,ancho)
{
   window.open(arg,'Catalogo','height='+ alto + ' width=' + ancho + ' dependent=yes');
}

function popmeup(arg) {
    window.open(arg, 'Catalogo', 'height=650 width=900 dependent=yes');
}
function popmeCelu(arg) {
    window.open(arg, 'Recargas', 'height=426 width=526 dependent=yes');
}
function pan_over(a) {
  //  alert(a.id);
    a.style.backgroundColor = '#fcfcfc';
 //   a.style.borderColor = '#f2f2f2';
 //   a.style.borderStyle = 'solid';
}

function pan_out(a) {
    //  alert(a.id);
    a.style.backgroundColor = '#ffffff';
    //a.style.borderStyle = 'none';
}

function imprSelec(nombre) {
    var ficha = document.getElementById(nombre);
    //ficha.style.height='700';
    // document.getElementById('ctl00_Contentplaceholder2_Panel1').style.height = '700'
    var ventimp = window.open('', 'popimpr');
    ventimp.document.write(ficha.innerHTML);
    ventimp.document.close();
    ventimp.print();
    // ficha.style.height='100';
    // document.getElementById('ctl00_Contentplaceholder2_Panel1').style.height = '384'
    ventimp.close();
}

function PRT1() {
    imprSelec('imprime');
}
