﻿// JScript File
var urlroot = '/';


function ShowProduct(code)
{
    window.open(urlroot + 'product.aspx?code='+code, '_blank','left=20, top=20, width=640, height=600, scrollbars=1, resizable=1', true);
}


function price()
{
    window.open("Price.htm","Price","alwaysRaised=yes,height=600,width=990,top=200,left=140,menubar=no,resizable=yes,scrollbars=yes,status=no");
}

function mapa()
{
    window.open("Mapa.aspx","_Blank","alwaysRaised=yes,height=602,width=620,top=100,left=100,menubar=no,resizable=no,scrollbars=no,status=no");
}


function filterInt(strIn)
{
    if(strIn==null || strIn=='')  return '';
    
    
    var strOut = '';
 
     
    for(i=0; i<strIn.length; i++ )
    {
        if( strIn.charAt(i) >= '0' && strIn.charAt(i) <='9' ) 
            strOut += strIn.charAt(i);        
    } 
    return strOut;
}

