
function valHome(form){
	var elem_hometel = document.getElementById("err_hometel");
	var elem_prompt = document.getElementById("err_prompt");

	if(document.myform.customerTelephoneHomeCodeAnswer.value != '' || document.myform.Inp_customerTelephoneHomeNumberAnswer.value != '')
   			{ 				
					if(checkNumeric(document.myform.customerTelephoneHomeCodeAnswer.value)==false || checkNumeric(document.myform.Inp_customerTelephoneHomeNumberAnswer.value)==false )
   					{     		    		
     		    			elem_hometel.style.display = '';
					document.myform.customerTelephoneHomeCodeAnswer.style.background = 'MistyRose'; 
					document.myform.Inp_customerTelephoneHomeNumberAnswer.style.background = 'MistyRose'; 
					elem_prompt.style.color = 'red';    		
    				}	
				else{
					elem_hometel.style.display = 'none';	
					document.myform.customerTelephoneHomeCodeAnswer.style.background = '#ffffff'; 
					document.myform.Inp_customerTelephoneHomeNumberAnswer.style.background = '#ffffff'; 
				   		
    				}
				 						    		    										
			}	
			else{
					elem_hometel.style.display = 'none';	
					document.myform.customerTelephoneHomeCodeAnswer.style.background = '#ffffff'; 
					document.myform.Inp_customerTelephoneHomeNumberAnswer.style.background = '#ffffff'; 
				   
			}			

}

function valMob(form){
	var elem_mobtel = document.getElementById("err_mobtel");
	var elem_prompt = document.getElementById("err_prompt");

	if(document.myform.customerTelephoneMobNumberAnswer.value != '')
   			{ 			
					if(checkNumeric(document.myform.customerTelephoneMobNumberAnswer.value)==false )
   					{   				    			
     		    			elem_mobtel.style.display = '';
					document.myform.customerTelephoneMobNumberAnswer.style.background = 'MistyRose'; 	
					elem_prompt.style.color = 'red';    	
    				}	
				else{					
					elem_mobtel.style.display = 'none';	
					document.myform.customerTelephoneMobNumberAnswer.style.background = '#ffffff'; 
					   		
    				}
				 						    		    										
			}	
			else{			
					elem_mobtel.style.display = 'none';	
					document.myform.customerTelephoneMobNumberAnswer.style.background = '#ffffff'; 
				   
			}
}


function valFax(form){
	var elem_faxtel = document.getElementById("err_faxtel");
 	var elem_prompt = document.getElementById("err_prompt");

	if(document.myform.customerTelephoneFaxCodeAnswer.value != '' || document.myform.customerTelephoneFaxNumberAnswer.value != '')
   			{ 				
					if(checkNumeric(document.myform.customerTelephoneFaxCodeAnswer.value)==false || checkNumeric(document.myform.customerTelephoneFaxNumberAnswer.value)==false )
   					{     		    			
     		    			elem_faxtel.style.display = '';
					document.myform.customerTelephoneFaxCodeAnswer.style.background = 'MistyRose'; 
					document.myform.customerTelephoneFaxNumberAnswer.style.background = 'MistyRose'; 	
					elem_prompt.style.color = 'red';    	
    				}	
				else{
					elem_faxtel.style.display = 'none';	
					document.myform.customerTelephoneFaxCodeAnswer.style.background = '#ffffff'; 
					document.myform.customerTelephoneFaxNumberAnswer.style.background = '#ffffff'; 	
					  	
    				}
				 						    		    										
			}	
			else{
					elem_faxtel.style.display = 'none';	
					document.myform.customerTelephoneFaxCodeAnswer.style.background = '#ffffff'; 
					document.myform.customerTelephoneFaxNumberAnswer.style.background = '#ffffff'; 
					 
			}


}