

function ProcessMenuItemDropDown() {
	var golink;
	var len;
	var pos;
	
	wholelink = document.formQuickLink.quickLink.value;
	pos = wholelink.indexOf('?');
	len = wholelink.length;
	justlink = wholelink.substring(0,pos);
	target = wholelink.substring(pos+1,len);
	
	if (target == '_new') {
		window.open(justlink,'newwindow','left=50,top=50,toolbar=1,menubar=1,status=1,scrollbars=1,location=1,resizable=1')
	} else if (target == '_parent') {
		window.location.href = justlink;
	}
}


	
	function fnEmptyValue(name) {
		if (document.form[name].value == document.form[name].defaultValue) {
			document.form[name].value = ""
		}
	}
	
	function fnCheckValue(name,type) {
		if (document.form[name].value != document.form[name].defaultValue && document.form[name].value != "") {
			//place code here to check value based on type
			if (type == 'email') {
				var emailStr = document.form[name].value
				return isEmail(emailStr,document.form[name])
			}
		}
		else
		{
			document.form[name].value = document.form[name].defaultValue
		}
	}
	
	function isEmail(emailStr,emailElement) {
		var emailStr = emailStr.toLowerCase();
		var checkTLD=1;
		var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
		var emailPat=/^(.+)@(.+)$/;
		var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
		var validChars="\[^\\s" + specialChars + "\]";
		var quotedUser="(\"[^\"]*\")";
		var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
		var atom=validChars + '+';
		var word="(" + atom + "|" + quotedUser + ")";
		var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
		var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
		var matchArray=emailStr.match(emailPat);
		if (matchArray==null) {
			alert("Incorrect E-mail Address: check ampersands ('@') and periods ('.')");
			emailElement.focus();
			return false;
		}
		var user=matchArray[1];
		var domain=matchArray[2];
		for (i=0; i<user.length; i++) {
			if (user.charCodeAt(i)>127) {
				alert("Incorrect E-mail Address: username contains invalid characters.");
				emailElement.focus();
				return false;
		   	}
		}
		for (i=0; i<domain.length; i++) {
			if (domain.charCodeAt(i)>127) {
				alert("Incorrect E-mail Address: contains invalid characters.");
				emailElement.focus();
				return false;
		  	}
		}
		if (user.match(userPat)==null) {
			alert("Incorrect E-mail Address: User Name doesn't appear to be valid.");
			emailElement.focus();
			return false;
		}
		var IPArray=domain.match(ipDomainPat);
		if (IPArray!=null) {
			for (var i=1;i<=4;i++) {
				if (IPArray[i]>255) {
					alert("Incorrect E-mail Address: destination IP address is invalid!");
					emailElement.focus();
					return false;
		   		}
			}
			return true;
		}
		var atomPat=new RegExp("^" + atom + "$");
		var domArr=domain.split(".");
		var len=domArr.length;
		for (i=0;i<len;i++) {
			if (domArr[i].search(atomPat)==-1) {
				alert("Incorrect E-mail Address: domain name does not appear to be valid.");
				emailElement.focus();
				return false;
		   	}
		}
		if (checkTLD && domArr[domArr.length-1].length!=2 && domArr[domArr.length-1].search(knownDomsPat)==-1) {
			alert("Incorrect E-mail Address: Address must end in a well-known domain or two letter country.");
			emailElement.focus();
			return false;
		}
		if (len<2) {
			alert("Incorrect E-mail syntax: address is missing a hostname!");
			emailElement.focus();
			return false;
		}
		return true;
	}
		
	function validate(form) {
		if (isBlank(document.form.txtLogin.value)) {
			alert("Please enter a Login ID.");
			document.form.txtLogin.focus();
			return false;
		}
		if (isBlank(document.form.txtPassword.value)) {
			alert("Please enter your password.");
			document.form.txtPassword.focus();
			return false;
		}
		return true;
	}
	
	
	
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}


function MM_timelinePlay(tmLnName, myID) { //v1.2
  //Copyright 1997 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  if (myID == tmLn.ID) { //if Im newest
    setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
    fNew = ++tmLn.curFrame;
    for (i=0; i<tmLn.length; i++) {
      sprite = tmLn[i];
      if (sprite.charAt(0) == 's') {
        if (sprite.obj) {
          numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
          if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
            keyFrm=1;
            for (j=0; j<sprite.values.length; j++) {
              props = sprite.values[j]; 
              if (numKeyFr != props.length) {
                if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
                else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
              } else {
                while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
                if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
                  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
                  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
        } } } } }
      } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
      if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  } }
}

function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  //Copyright 1997 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (numGotos != null)
    if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
    else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  jmpFwd = (fNew > tmLn.curFrame);
  for (i = 0; i < tmLn.length; i++) {
    sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
    if (sprite.charAt(0) == "s") {
      numKeyFr = sprite.keyFrames.length;
      firstKeyFr = sprite.keyFrames[0];
      lastKeyFr = sprite.keyFrames[numKeyFr - 1];
      if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
      for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
      for (j=0; j<sprite.values.length; j++) {
        props = sprite.values[j];
        if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
        else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
        if (sprite.obj != null) {
          if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
          else        sprite.obj[props.prop2][props.prop] = props[propNum];
      } }
    } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  }
  tmLn.curFrame = fNew;
  if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
}

function MM_timelineStop(tmLnName) { //v1.2
  //Copyright 1997 Macromedia, Inc. All rights reserved.
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  if (tmLnName == null)  //stop all
    for (var i=0; i<document.MM_Time.length; i++) document.MM_Time[i].ID = null;
  else document.MM_Time[tmLnName].ID = null; //stop one
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_initTimelines() { //v4.0
    //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
    document.MM_Time = new Array(1);
    document.MM_Time[0] = new Array(1);
    document.MM_Time["navtimeline"] = document.MM_Time[0];
    document.MM_Time[0].MM_Name = "navtimeline";
    document.MM_Time[0].fps = 15;
    document.MM_Time[0][0] = new String("behavior");
    document.MM_Time[0][0].frame = 15;
    document.MM_Time[0][0].value = "MM_swapImage('productsampling','','images/smsi_menu_productsampling.gif'); MM_swapImage('retailmerchandising','','images/smsi_menu_retailmerchandising.gif'); MM_swapImage('consulting','','images/smsi_menu_consulting.gif'); MM_swapImage('publishing','','images/smsi_menu_publishing.gif');  MM_showHideLayers('productsampling_layer','','hide','retailmerchandising_layer','','hide','consulting_layer','','hide','publishing_layer','','hide')";
    document.MM_Time[0].lastFrame = 15;
    for (i=0; i<document.MM_Time.length; i++) {
        document.MM_Time[i].ID = null;
        document.MM_Time[i].curFrame = 0;
        document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
    }
}
	
	
function MM_preloadImages() { //v3.0
 	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
  	var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
	
	
	
		function emailCheck(emailStr) {

		var checkTLD=1;
		var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
		var emailPat=/^(.+)@(.+)$/;
		var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
		var validChars="\[^\\s" + specialChars + "\]";
		var quotedUser="(\"[^\"]*\")";
		var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
		var atom=validChars + '+';
		var word="(" + atom + "|" + quotedUser + ")";
		var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
		var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
		var matchArray=emailStr.match(emailPat);
		if (matchArray==null) {
			alert("Incorrect email syntax: check @ and .'s");
		return false;
		}
		var user=matchArray[1];
		var domain=matchArray[2];
		
		
		for (i=0; i<user.length; i++) {
		if (user.charCodeAt(i)>127) {
		alert("Incorrect email syntax: username contains invalid characters.");
		return false;
		   }
		}
		for (i=0; i<domain.length; i++) {
		if (domain.charCodeAt(i)>127) {
		alert("Incorrect email syntax: domain name contains invalid characters.");
		return false;
		   }
		}
		if (user.match(userPat)==null) {
		alert("Incorrect email syntax: username doesn't seem to be valid.");
		return false;
		}
		var IPArray=domain.match(ipDomainPat);
		if (IPArray!=null) {
		for (var i=1;i<=4;i++) {
		if (IPArray[i]>255) {
		alert("Incorrect email syntax: destination IP address is invalid!");
		return false;
		   }
		}
		return true;
		}
		
		var atomPat=new RegExp("^" + atom + "$");
		var domArr=domain.split(".");
		var len=domArr.length;
		for (i=0;i<len;i++) {
		if (domArr[i].search(atomPat)==-1) {
		alert("Incorrect email syntax: domain name does not seem to be valid.");
		return false;
		   }
		}
		
		if (checkTLD && domArr[domArr.length-1].length!=2 && 
		domArr[domArr.length-1].search(knownDomsPat)==-1) {
		alert("Incorrect email syntax: address must end in a well-known domain or two letter " + "country.");
		return false;
		}
		
		if (len<2) {
		alert("Incorrect email syntax: address is missing a hostname!");
		return false;
		}
		
		return true;
		}



var alertmsg = ""
function checkSubscribe(form) {
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (form.TitleID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Title. \n")
	}
	if (form.Company.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Company. \n")
	}
	if (form.Address.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Address. \n")
	}
	if (form.City.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your City. \n")
	}
	if (form.StateID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your State. \n")
	}
	if (form.Zip.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Zip. \n")
	}
	if (form.Phone.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Phone. \n")
	}
	if (form.RetailerType.value == "" && form.WholesalerType.value == "" && form.MarketerType.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please specify one of the following. \n")
		alertmsg = alertmsg + ("    -Retailer Type \n")
		alertmsg = alertmsg + ("    -Wholesaler Type \n")
		alertmsg = alertmsg + ("    -Marketer Type \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	
	
var alertmsg = ""
function checkNetworkContactUs(form) {
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	
	
function checkContactUs(form) {
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.CompanyName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Company Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	
	
var alertmsg = ""
function checkNetworkRegistration(form) {
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (form.BusinessName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Name. \n")
	}
	if (form.BusinessAddress.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Address. \n")
	}
	if (form.City.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your City. \n")
	}
	if (form.StateID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your State. \n")
	}
	if (form.Zip.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Zip Code. \n")
	}
	if (form.CountryID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Country. \n")
	}
	if (form.TitleID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Title. \n")
	}
	if (form.AreaCode.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Area Code. \n")
	}
	if (form.Phone.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Phone. \n")
	}
	if (form.NumberOfChairsID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Number of Chairs. \n")
	}
	if (form.NumberOfCustomersID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Number of Customers. \n")
	}
	if (form.ClientBaseID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Dominant Client Base. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	

	
function checkNetworkRegistration2(form) {
	var alertmsg = ""
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (form.BusinessName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Name. \n")
	}
	if (form.BusinessAddress.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Address. \n")
	}
	if (form.City.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your City. \n")
	}
	if (form.StateID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your State. \n")
	}
	if (form.Zip.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Zip Code. \n")
	}
	if (form.CountryID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Country. \n")
	}
	if (form.TitleID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Title. \n")
	}
	if (form.AreaCode.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Area Code. \n")
	}
	if (form.Phone.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Phone. \n")
	}
	if (form.NumberOfCustomersID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Congregation Size. \n")
	}
	if (form.NumberOfFamiliesID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter the Total Number of Families. \n")
	}
	if (form.ClientBaseID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Dominant Client Base. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	
var alertmsg = ""
function checkSMSiTeamNetworkRegistration(form) {
	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (form.BusinessName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Name. \n")
	}
	if (form.BusinessAddress.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Address. \n")
	}
	if (form.City.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your City. \n")
	}
	if (form.StateID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your State. \n")
	}
	if (form.Zip.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Zip Code. \n")
	}
	if (form.Phone.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Phone. \n")
	}
	if (form.ServiceProvided_HairCare.checked == false 
		& form.ServiceProvided_SkinCare.checked == false
		& form.ServiceProvided_ClothingAccessories.checked == false
		& form.ServiceProvided_Tanning.checked == false
		& form.ServiceProvided_BridalGownsServices.checked == false
		& form.ServiceProvided_Furriers.checked == false
		& form.ServiceProvided_DaySpa.checked == false
		& form.ServiceProvided_HealthClubExercise.checked == false
		& form.ServiceProvided_VacationSpa.checked == false
		& form.ServiceProvided_Other.checked == false) {
		alertmsg = alertmsg + ("Incorrect information: please specify at least one Service. \n")
	}
	if (form.ServiceProvided_Other.checked == true & form.ServiceProvided_Other_Text.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please describe your Other Service. \n")
	}
	if (form.NumberOfChairsID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Number of Chairs. \n")
	}
	if (form.NumberOfCustomersID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Number of Customers. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
	}
	
	

var alertmsg = ""
function checkHealthCareNetworkRegistration(form) {
	//var Black = form.HealthcareClientBase_Black.value
	//alert(Black);
	//alert(IsNumeric(5);
	//return false;

	if (form.FirstName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your First Name. \n")
	}
	if (form.LastName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Last Name. \n")
	}
	if (form.Email.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your E-mail Address. \n")
	}
	if (form.BusinessName.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Name. \n")
	}
	if (form.BusinessAddress.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Business Address. \n")
	}
	if (form.City.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your City. \n")
	}
	if (form.StateID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your State. \n")
	}
	if (form.Zip.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Zip Code. \n")
	}
	if (form.CountryID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Country. \n")
	}
	if (form.TitleID.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Title. \n")
	}
	if (form.AreaCode.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Area Code. \n")
	}
	if (form.Phone.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Phone. \n")
	}
	if (form.SpecificInterests.value == "") {
		alertmsg = alertmsg + ("Incorrect information: please enter your Specific Interests. \n")
	}
	if (alertmsg!="") {
		alert(alertmsg)
		alertmsg = ""
		return false
		} else {
		var emailStr = form.Email.value
		return emailCheck(emailStr);
		}
	return true;
}
