function getPath()
{

  if (document.getElementById('subcategory').value == ''){
	
  document.questForm.action=(document.getElementById('category').value);
  document.questForm.submit() ;
	
  }else{
  
  document.questForm.action=(document.getElementById('subcategory').value);		
  document.questForm.submit() ;	
  	
  }
  
}

							var sAlert = ""
							function validateAndSubmitForm(){
								sAlert = ""
								var f = document.getElementById('contactform')
								if ( f.firstname.value == "" )			sAlert += "Du mangler at angive fornavn.\n"
								if ( f.surname.value == "" )			sAlert += "Du mangler at angive efternavn.\n"
								if ( f.phonenumber.value == "" )		sAlert += "Du mangler at angive telefonnummer.\n"
								if ( f.email.value == "" )				sAlert += "Du mangler at angive email.\n"
								if ( sAlert != "" ){
									alert(sAlert)
									return
								} else {
									f.submit()
								}
							}

