///////////////////////////////////////////
// hitbox stuff
///////////////////////////////////////////

function CallStreaming()
{
	window.open('http://' + location.hostname + '/jsp/site/streaming.jsp','flash','toolbar=no,location=no,status=no,menubar=no, scrollbars=no,resizable=no,copyhistory=no,directories=no,fullscreen=no,width=250,height=200,top=150,left=150');
}

function track(key,key2)
{
/* HitBox Alert */
	wURL = document.location.href;
	partes = wURL.split('/'); 
	//se habilitó el tracking desde des
	if(partes[2].split('.')[0] == "dest")
	{
		alert("Hitbox Key: " + key);
	}
	else
	{
		if(partes[2].split('.')[0] != "dev" && partes[2].split('.')[0] != "staging")
		{
			var _mlc = "/RD/" + countryName;
			
			switch(key)
			{
				case "wallpapers":
					_hbPageView("/descargas/wallpapers", _mlc);
					break;
				case "screensavers":
					_hbPageView("/descargas/screensavers", _mlc);
					break;
				case "iconos":
					_hbPageView("/descargas/iconos", _mlc);
					break;
				case "item":
					_hbPageView("/descargas/" + key2, _mlc);
					break;
				case "entrevistas":
					_hbPageView("/entrevistas/" + key2, _mlc);			
				default:
				  //comentado para que no trackee
					//alert("not tracking properly key: " + key);
					break;
			}
		}
	}
}
