// JavaScript Document
function getBrowserCodeName(){ 
	var navName = navigator.appName;
	if(navName=="Netscape"){
		navName = "FF";}
	else if(navName=="Microsoft Internet Explorer"){
		navName = "IE";}
	return navName;
}
//-->
function highLight(td,show){
	if(show==1){
		td.className="navAplicacionesON"}
	else{
		td.className="navAplicacionesOFF"}
}
//-->
function gotoGrupo(grupo){
	navName = getBrowserCodeName();
	if(navName=="FF"){
		location.replace("buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&grupo="+grupo);
	}
	else{
		window.location="buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&grupo="+grupo;
		}
}
//-->
function gotoClass(){
	navName = getBrowserCodeName();
	if(navName=="FF"){
		location.replace("buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&idAplicacion="+document.getElementById("idClass").value);
	}
	else{
		window.location="buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&idAplicacion="+document.getElementById("idClass").value;
		}
}
//-->
function searchFor(){
	navName = getBrowserCodeName();
	if(navName=="FF"){
		location.replace("buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&q="+document.searchForm.q.value);
	}
	else{
		window.location="buscar.asp?showAllGroups="+document.searchForm.showAllGroups.value+"&q="+document.searchForm.q.value;
		}		
}
//-->
function gotoMenuRigth(option){
	navName = getBrowserCodeName();
	if(navName=="FF"){
		location.replace(option);
	}
	else{
		window.location=option;
		}
}
//-->
function iniciarSession(){
	var myLink = "<a id='showSession' href='loginCEV.asp?TB_iframe=true&modal=0&height=200&width=400' rel='sexylightbox'></a>";
	$(myLink).insertAfter("#mailTo");			
	setTimeout(function(){
		SexyLightbox.refresh();				
		$("#showSession").trigger("click");
		setTimeout(function(){
			$("#showSession").remove();
		}, 2000);
	},100);
}
