	function goSoftware(){
  		var phone_model = "";
  		phone_model = document.getElementById("phone_model").value;
  		if(phone_model ==""){
  			return;
  		}
  	    document.frm.action = "/suporte/softwaremanuals/software.do";
  	    document.frm.submit();
  	}
  	
  	//goManuals modify-
  	function goSoftwareModel(phone_model){
  		document.getElementById("phone_model").value = phone_model;
  		document.frm.action = "/suporte/softwaremanuals/software.do";
  		document.frm.submit();
  	}
  	
  	function goManuals(phone_model){
  		document.getElementById("phone_model").value = phone_model;
  		document.frm.action = "/suporte/softwaremanuals/software.do?sw_type=UM";
  		document.frm.submit();
  	}
  	
   	function goPCstudio31(){
  	    document.frm.action = "/suporte/softwaremanuals/pcStudio31.do";
  	    document.frm.submit();
  	}