var navigation_popup = null;
function navigation_showPopup() { 
	document.getElementById("MenuDes").style.display = "block";
	tabOver(document.getElementById('communityMenu'));
}
function navigation_hidePopup() { 
	document.getElementById("MenuDes").style.display = "none";
	tabOut(document.getElementById('communityMenu'));
}
function tabOver(e){
	if (e.className!='CommonSimpleTabStripSelectedTab')
		e.className='CommonSimpleTabStripTabHover';
}
function tabOut(e){
	if (e.className!='CommonSimpleTabStripSelectedTab')
		e.className='CommonSimpleTabStripTab';
}
function marcar(e){
	e.className='CSContextMenuItemHover';
}
function desmarcar(e){
	e.className='CSContextMenuItem';
}
function contacto(){ 
	window.open('/contacto.aspx','popUpContacto','toolbar=0,menubar=0,scrollbars=0'); 
}
function contactoMochilero(){
	window.open('/mochileros/contacto_mochilero.aspx','popUpContacto','toolbar=0,menubar=0,scrollbars=0');
}
