function findObject( id )
{
    return eval('document.all.' + id);
}

function showProduct( strArtId )
{
    if( eval('divPhoto') != null )
    {
        divPhoto.oldHTML = divPhoto.innerHTML;
        var objSpan = eval('product' + strArtId);
        if( objSpan.constructedHTML == null )
        {
            var str = '';
            str += '<img src="/imagenes/imgPym3.0/lupita.gif" width="160" height="17">';
			str += '<img src="/imagenes/imgPym3.0/sp.gif" width="160" height="1">';
			str += '<table cellpadding=0 cellspacing=0 style="border: solid 1px #98B0BC;" height="140" width="160">';
			str += '<tr><td><img src="/imagenes/imgPym3.0/sp.gif" width="1" height="150"></td>';
			str += '<td height="155" align="center"><div style="height: 155px; width: 156px; overflow: hidden;">';
			str += '<image alt="No disponible" width=148 name="imgProductPhoto" src="';
            str += objSpan.imageSource;
            str += '" border="0"></div></td></tr>';
            str += '<tr><td colspan="2" align="center" id="tdProductPrice" height="30" class="tazuc10n"><br><font class="tazuc15bn">' + objSpan.price + '</font> &euro; unidad</td></tr>';
            str += '</table>';
            objSpan.constructedHTML = str;
        }
        divPhoto.innerHTML = objSpan.constructedHTML;
    }
}

function hideProduct()
{
    if( eval('divPhoto') != null && eval('divPhoto.oldHTML') != null )
    {
        divPhoto.innerHTML = divPhoto.oldHTML;
    }
}



