function Form_step1_Validator(theForm){if(theForm.domein.value==''||theForm.domein.value.length<2){alert("Voer een domein naam in!");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return false}var checkOK="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-";var checkStr=theForm.domein.value;var allValid=true;for(i=0;i<checkStr.length;i++){ch=checkStr.charAt(i);for(j=0;j<checkOK.length;j++)if(ch==checkOK.charAt(j))break;if(j==checkOK.length){allValid=false;break}}if(!allValid){alert("Gebruik alleen letters of cijfers in de \"domein naam\".\n Je hoeft geen extentie in te voeren ");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}var checkStr=theForm.domein.value;var stld=theForm.stld.value;if(stld=="biz"|stld=="info"){if(checkStr.length<3){alert("De domein naam dient uit minimaal 3 tekens te bestaan.");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}}if(checkStr.length<2){alert("De domein naam dient uit minimaal 2 tekens te bestaan.");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}if(checkStr.length>63){alert("De domein naam mag niet langer zijn dan 63 tekens.");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}var checkStr=theForm.domein.value;if(checkStr.charAt(0)=="-"){alert("De domein kan niet met een\"-\" beginnen.");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}if(checkStr.charAt(checkStr.length-1)=="-"){alert("De domein naam kan niet met een \"-\" eindigen.");theForm.domein.style.border="solid 2px  #ff0000";theForm.domein.focus();return(false)}return true}
