
function verFicha (idProduct)
{
	hUrl = "";
	
	if ( navigator.appName == "Microsoft Internet Explorer" ) { hUrl = "../../secciones/productos/"; }
	else { hUrl = "secciones/productos/"; }
	
	document.location.href = hUrl + "productos_ficha.aspx?idProduct=" + idProduct;
}

function comprar (idProduct)
{
	hUrl = "";
	
	if ( navigator.appName == "Microsoft Internet Explorer" ) { hUrl = "../../secciones/shop/"; }
	else { hUrl = "secciones/shop/"; }
	
	document.location.href = hUrl + "buy.aspx?productId=" + idProduct;
}

function showFirstMapFlash()
{
	for(Index = 0; Index < $('listCategory').childNodes.length; Index++)
	{
		if($('listCategory').childNodes[Index].id > 0)
		{ showMapFlash($('listCategory').childNodes[Index].id); break; }
	}

}

function showMapFlash(categoryId)
{
	var _flash = new SWFObject("swf/ficha.swf?idioma="+Language, "showMapFlash", "389", "550", "8", "#000000");

		_flash.addParam("flashVars", "info=_tiendaOnline/getProductosXml.aspx?categoryId="+categoryId);
		//_flash.addParam("wmode", "transparent");
		_flash.addParam("wmode", "opaque");

	_flash.write("flash");
	
	for(Index = 0; Index < $('listCategory').childNodes.length; Index++)
	{
		if($('listCategory').childNodes[Index].id > 0)
		{ $('listCategory').childNodes[Index].style.color = '#ffffff'; }
	}
	
	document.getElementById(categoryId).style.color = '#FF8E00';
}
