

function checkformUserOption ( form, val ) {
		
	if (form.radiob[0].checked) {
     		form.item_name.value = val + " : with bonus : Free Hosting for a 2nd Domain";
   	} else if (form.radiob[1].checked) {
     		form.item_name.value = val + " : with bonus : Free CMS with web site design purchase";
   	}  	
  
 	if (form.TermsCheck.checked == false) {   
	
  		alert( "Please confirm that you have read the terms and conditions by checking the box." ); 
		form.TermsCheck.focus();    
		return false ;  
		
	}
 	
	return true ;
		

}

