<!--
// hsiver = "v2-001"
////////////////////////////////////////////////////////////////////////////serkan
function OpenPicture(picture){
	if (window.myWindow){myWindow.close();}
	myWindow = window.open("", "", "width=200,height=30, scrollbars=no, resizable=yes");
	myWindow.document.writeln ("<html><style type='text/css'><!-- body { overflow: auto; margin:0px } --></style><body bgcolor='#FFFFFF'><center>" +
"<a href=# onclick='self.close()'><img src=" + picture + " border='0' name='picture' alt='Please Wait then Click to Close the Window!' onload='window.focus(); " + 
"window.resizeTo(document.picture.width+12,document.picture.height+70);'></a>" +
"<p><a href='javascript:window.close();' style='font-size: 8pt; COLOR:#666666; font-weight: bold; TEXT-DECORATION: none'>[CLOSE]</a></p></center></body></html>");
}
////////////////////////////////////////////////////////////////////////////serkan
function openNewWindow(target, windowWidth, windowHeight){
	if (window.myWindow){myWindow.close();}
	myWindow = window.open(target, "NewWindow","toolbar=no, status=no, scrollbars=yes, resizable=yes, width="+windowWidth+", height="+windowHeight+"");
	if(parseInt(navigator.appVersion) >= 4){myWindow.window.focus();}
}
////////////////////////////////////////////////////////////////////////////macromedia
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];}}
}
////////////////////////////////////////////////////////////////////////////david
function newWin(value) {large_win = window.open(value + "", "displaywindow","toolbar=no,width=625,height=600,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no");}
function newWin2(value) {large_win = window.open(value + "", "displaywindow","toolbar=no,width=448,height=520,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no");}
function newWin6(value) {large_win = window.open(value + "", "displaywindow","toolbar=no,width=625,height=450,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no");}
function newWin8(value) {large_win = window.open(value + "", "displaywindow","toolbar=no,width=800,height=600,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no");}
function newWinPrn(value) {large_win = window.open(value + "", "displaywindow","toolbar=no,width=625,height=600,directories=no,status=no,scrollbars=yes,resizable=no,menubar=yes");}
////////////////////////////////////////////////////////////////////////////David
function checkEmail(emailfield,emailnote) {
emailat = emailfield.indexOf("@")
emailul = emailfield.lastIndexOf("_")
emaildot = emailfield.lastIndexOf(".")
emailspc = emailfield.lastIndexOf(" ")
emaillen = emailfield.length-1
missinginfo = "";
if (emailfield == "") {        // allow blank
  return "";  
} else if (emailspc != -1 ||      // cannot contain spaces
	emailat == -1 ||           // must contain '@'
	emailat < 1 ||             // '@' cannot be first char
	emailat == emaillen ||     // '@' cannot be last char
	emaildot == -1 ||          // must contain '.'
	emaildot < emailat ||      // '.' must come after '@'
	emaildot == emaillen ||    // '.' cannot be last char
	emaildot == emailat+1 ||   // must be at least on char between '@' and last '.'
	(emailul != -1 && emailul > emailat))  // ISP cannot contain underlines 
{
  if (emailnote == "") {
    missinginfo += "\n     -  email";
  } else {
    missinginfo += "\n     -  " + emailnote;
  }
  if (emailspc != -1) {
	missinginfo += "  (spaces not allowed)";
  } else if (emailat == -1) {
    missinginfo += "  (missing @)";
  } else if (emailat == 0) {
	missinginfo += "  (address too short)";
  } else if (emaildot == -1 || emaildot < emailat || emaildot == emaillen ) {
    missinginfo += "  (missing .com)";
  } else if (emaildot == emailat+1) {
	missinginfo += "  (ISP too short)";
  } else if (emailul > emailat) {
    missinginfo += "  (underline in ISP)";
  }
  //return missinginfo;
	return document.MM_returnValue = (missinginfo=='')
} else {
  return "";  
}
}
////////////////////////////////////////////////////////////////////////////David
function checkNumInParty(ShowAlert,CheckAllFields,NumInParty,NumOfAdults,NumOfKids) {
  missinginfo = '';  // created by David
  if ( NumInParty == "" || NumInParty == 0 || isNaN(NumInParty) == true ) {
    missinginfo += "\n     -  Number in Party - should be at least one";
  } 
  if ( CheckAllFields != false ) {
    if ( NumOfAdults == '' || isNaN(NumOfAdults) == true ) {
      missinginfo += "\n     -  Number of Adults - should be a number (use zero if none)";
    }
    if ( NumOfKids == '' || isNaN(NumOfKids) == true ) {
      missinginfo += "\n     -  Number of Children - should be a number (use zero if none)";
    } 
	if ( missinginfo == '' && parseFloat(NumOfAdults) + parseFloat(NumOfKids) != NumInParty ) {
      missinginfo += "\n     -  Number in Party - Adults plus Children should add up to Party";
    }
  }
  if (ShowAlert != '' && missinginfo != ''){alert('The required information is incomplete or contains errors.\n Please make sure the following fields are correct.\t\t\t\t\t\n\n'+missinginfo)};
  document.MM_returnValue = (missinginfo=='');
  return missinginfo;
}

function checkNumInPartyNoTotal(ShowAlert,CheckAllFields,NumOfAdults,NumOfKids,ChildrenAges) {
  missinginfo = '';  // created by David
//  if ( NumInParty == "" || NumInParty == 0 || isNaN(NumInParty) == true ) {
//    missinginfo += "\n     -  Number in Party - should be at least one";
//  } 
  if ( CheckAllFields != false ) {
    if ( NumOfAdults == '' || isNaN(NumOfAdults) == true ) {
      missinginfo += "\n     -  Number of Adults - should be a number";
    }
    if ( isNaN(NumOfKids) == true ) {
      missinginfo += "\n     -  Number of Children - should be a number ";
    } 
	if ( NumOfKids > 0 && ChildrenAges == '') {
	   missinginfo += "\n     -  Ages of Children -  Enter children ages separated by a comma";		
	}
//	if ( missinginfo == '' && parseFloat(NumOfAdults) + parseFloat(NumOfKids) != NumInParty ) {
//      missinginfo += "\n     -  Number in Party - Adults plus Children should add up to Party";
//    }
  }
  if (ShowAlert != '' && missinginfo != ''){alert('The required information is incomplete or contains errors.\n Please make sure the following fields are correct.\t\t\t\t\t\n\n'+missinginfo)};
  document.MM_returnValue = (missinginfo=='');
  return missinginfo;
}
////////////////////////////////////////////////////////////////////////////serkan
function checkYearRelease(input) {
	if (!input || isNaN(input) == true || input.length != 4) {
		now = new Date(); 
		var year = now.getFullYear();
		return "\n     -  Please enter year releasing formatted like " + year;
	} else {return ""}
}




function checkFields2() {
missinginfo = "";
if (document.all["ResortInquiring"].value == "") {missinginfo += "\n     -  Resort Inquiring";}
if (document.all["FaxBack"].value == "") {missinginfo += "\n     -  Fax Number";}
if (document.all["EmployeeName"].value == "") {missinginfo += "\n     -  Employee Name";}
if (document.all["Title"].value == "") {missinginfo += "\n     -  Title";}
if (document.all["OwnerName"].value == "") {missinginfo += "\n     -  Owner Name";}
if (document.all["EmployeeName"].value == "") {missinginfo += "\n     -  Home Resort";}

if (document.all["releasedate"].value == "") {missinginfo += "\n     -  Release Year";}
if (document.all["resortcity"].value == "") {missinginfo += "\n     -  City";}
if (document.all["resortstate"].value == "") {missinginfo += "\n     -  State";}
if (document.all["resortcountry"].value == "") {missinginfo += "\n     -  Country";}
if (document.all["resortweeknumber"].value == "") {missinginfo += "\n     -  Week Number";}
if (document.all["date1"].value == "") {missinginfo += "\n     -  Date From";}
if (document.all["date2"].value == "") {missinginfo += "\n     -  Date To";}
if (document.all["floatingTime"].value == "") {missinginfo += "\n     -  Floating Time";}
if (document.all["unittype"].value == "") {missinginfo += "\n     -  Unit Type";}
 if (document.all["sleeps"].value == "") {missinginfo += "\n     -  Sleeps";}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to correctly fill in your:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else return true;


}

function checkFields() {

//alert("here");


missinginfo = "";



if (!document.all["1yesno"][0].checked && !document.all["1yesno"][1].checked) {missinginfo += "\n     -  1. Vacation Ownership Program";}
if (document.all["1yesno"][0].checked){

	if (document.all.elements["1a"].value == "") {missinginfo += "\n     -  1-a. Resort Names and Locations";}
	if (document.all.elements["1b"].value == "") {missinginfo += "\n     -  1-b. Added Value";}
	if (document.all.elements["1c"].value == "") {missinginfo += "\n     -  1-c. structure of your product";}
	if (document.all.elements["1d"].value == "") {missinginfo += "\n     -  1-d. Maximum term of your program";}
	if (document.all.elements["1e"].value == "") {missinginfo += "\n     -  1-e. Sales price of your Lowest";}
	if (document.all.elements["1f"].value == "") {missinginfo += "\n     -  1-f. Sales price of your Highest";}
	if (document.all.elements["1g"].value == "") {missinginfo += "\n     -  1-g. Maintenance Fees";}
	
	if (!document.all.elements["AllInclusive1"][0].checked && !document.all.elements["AllInclusive1"][1].checked) {missinginfo += "\n     -  1-h. offer an ALL-INCLUSIVE";}
	
	if (document.all.elements["AllInclusive1"][0].checked) {

		if (!document.all.elements["AllInclusive2"][0].checked && !document.all.elements["AllInclusive2"][1].checked) {missinginfo += "\n     -  1-h. All-Inclusice Optional or Mandatory";}

		if (!document.all.elements["AllInclusive3"][0].checked && !document.all.elements["AllInclusive3"][1].checked) {missinginfo += "\n     -  1-h. All-Inclusive required for every inbound";}

		if (document.all.elements["AllInclusive3"][1].checked) {
		
			//missinginfo += "\n     -  1-h. explain a no answer";
			//	alert("\n     -  1-h. explain a no answer");
			if(document.all.elements["AllInclusive4"].value =="") {

				missinginfo += "\n     -  1-h. explain a no answer";
				//alert("\n     -  1-h. explain a no answer");
			}
		}
		
		
		
		
		if (document.all.elements["1h4"].value == "" && document.all.elements["1h5"].value == "") {missinginfo += "\n     -  1-h. High Season All-inclusive Fee ";}
		if (document.all.elements["1h6"].value == "" && document.all.elements["1h7"].value == "") {missinginfo += "\n     -  1-h. Mid Season All-inclusive Fee ";}
		if (document.all.elements["1h8"].value == "" && document.all.elements["1h9"].value == "") {missinginfo += "\n     -  1-h. Low Season All-inclusive Fee ";}
		if (document.all.elements["1h10"].value == "") {missinginfo += "\n     -  1-h. What What age range is considered a Child";}
		if (document.all.elements["1h10"].value == "") {missinginfo += "\n     -  1-h. What What age range is free";}
		
	}
	
	if (!document.all.elements["1i"][0].checked && !document.all.elements["1i"][1].checked && !document.all.elements["1i"][2].checked) {missinginfo += "\n     -  1-i. HSI Service Program";}

	if (!document.all.elements["1j"][0].checked && !document.all.elements["1j"][1].checked && !document.all.elements["1j"][2].checked) {missinginfo += "\n     -  1-j. Taste of Paradise Member";}

	if (document.all.elements["1k"].value == "") {missinginfo += "\n     -  1-k. Renting weeks to HSI";}
	
}


if (document.all["2hear"].value == "") {missinginfo += "\n     -  2. Hear about HSI";}
if (document.all["3a"].value == "") {missinginfo += "\n     -  3-a. Marketing Entity legal name";}
if (document.all["3b"].value == "") {missinginfo += "\n     -  3-b. Marketing Entity Business Structure";}
if (document.all["3c"].value == "") {missinginfo += "\n     -  3-c. Marketing Entity Legal Address";}

if (document.all["3d"].value == "") {missinginfo += "\n     -  3-d. Contact Person";}
if (document.all["3e"].value == "") {missinginfo += "\n     -  3-e. Contact Person Title";}
if (document.all["3f"].value == "") {missinginfo += "\n     -  3-f. Contact Person Phone";}
if (document.all["3g"].value == "") {missinginfo += "\n     -  3-g. Contact Person Fax";}
if (document.all["3h"].value == "") {missinginfo += "\n     -  3-h. Contact Person Email";}

if (document.all["4license"].value == "") {missinginfo += "\n     -  4. Business License";}
if (document.all["5location"].value == "") {missinginfo += "\n     -  5. License Location";}
if (document.all["6tax"].value == "") {missinginfo += "\n     -  6. Tax ID Number";}
if (document.all["7address"].value == "") {missinginfo += "\n     -  7. Point of sale address";}
if (document.all["8address"].value == "") {missinginfo += "\n     -  8. Enrollment Address";}
if (document.all["8phone"].value == "") {missinginfo += "\n     -  8. Enrollment Phone";}
if (document.all["8fax"].value == "") {missinginfo += "\n     -  8. Enrollment Fax";}

if (!document.all["10alocal"].checked &&
!document.all["10atourists"].checked &&
!document.all["10abusiness"].checked &&
document.all["10aexplain"].value == "") {missinginfo += "\n     -  10-a. Target Market";}

if (!document.all["10binhouse"].checked &&
!document.all["10bopc"].checked &&
!document.all["10binhouseopc"].checked &&
!document.all["10brecyled"].checked &&
!document.all["10bvacation"].checked &&
document.all["10bexplain"].value == "") {missinginfo += "\n     -  10-b. Lead Generation";}


if (!document.all["10c"][0].checked && !document.all["10c"][1].checked) {missinginfo += "\n     -  10-c. Premimums to induce";}

if (!document.all["10donsite"].checked &&
!document.all["10doffsite"].checked &&
!document.all["10dhome"].checked &&
!document.all["10dliner"].checked &&
!document.all["10dfront"].checked &&
!document.all["10dphone"].checked &&
!document.all["10dinternet"].checked &&
document.all["10dexplain"].value == "") {missinginfo += "\n     -  10-d. Presentation Structure";}




if (document.all["9website"].value == "") {missinginfo += "\n     -  Website Address";}


if (!document.all["HSI-Branded"].checked &&
!document.all["Co-Branded"].checked &&
!document.all["Private-Branded"].checked) {missinginfo += "\n     -  11. Type of Affiliation you are interested in";}



if (!document.all["AddOn08"].checked && !document.all["TasteParadise04"].checked &&
   !document.all["AddOn01"].checked && !document.all["TasteParadise01"].checked &&
   !document.all["AddOn02"].checked && !document.all["TasteParadise02"].checked &&
   !document.all["AddOn03"].checked && !document.all["TasteParadise03"].checked) {missinginfo += "\n     -  12. Type of Membership";}
//if (!document.all.elements["12yesno"][0].checked && !document.all.elements["12yesno"][1].checked) {missinginfo += "\n     -  HSI Free Cruise";}


if (document.all["TasteParadise01"].checked || document.all["TasteParadise02"].checked || document.all["TasteParadise03"].checked || document.all["TasteParadise04"].checked) {
	if(!document.all["BeBack"][0].checked && !document.all["BeBack"][1].checked && !document.all["BeBack"][2].checked) {
		missinginfo += "\n     -  12-b. include a guaranteed B-Back";
	}
	
}



if (!document.all["AddOn04"].checked && !document.all["TasteParadise05"].checked &&
   !document.all["AddOn05"].checked && !document.all["TasteParadise06"].checked &&
   !document.all["AddOn06"].checked && !document.all["TasteParadise07"].checked &&
   !document.all["AddOn07"].checked && !document.all["TasteParadise08"].checked) {missinginfo += "\n     -  13-a. Languages";}
  
if (document.all["AddOn04"].checked)
{
	if (!document.all["ENG01"].checked && !document.all["SPA01"].checked && !document.all["ITA01"].checked && !document.all["GER01"].checked && !document.all["FRE01"].checked) { missinginfo += "\n     -  12-a. Add-On (Standard) Languages"; }

	if ((document.all["ENG01"].checked  && document.all["QtyENG01"].value == "") ||
	(document.all["SPA01"].checked  && document.all["QtySPA01"].value == "") ||
	(document.all["ITA01"].checked  && document.all["QtyITA01"].value == "") ||
	(document.all["GER01"].checked  && document.all["QtyGER01"].value == "") ||
	(document.all["FRE01"].checked  && document.all["QtyFRE01"].value == "")) { missinginfo += "\n     -  13-a. Add-On (Standard) Languages"; }
}
  
 

if (document.all["AddOn05"].checked)
{
	if (!document.all["ENG02"].checked && !document.all["SPA02"].checked && !document.all["ITA02"].checked && !document.all["GER02"].checked && !document.all["FRE02"].checked) { missinginfo += "\n     -  12-a. Add-On (with free 7-night Royal Caribbean Cruise for two.) Languages"; }

	if ((document.all["ENG02"].checked  && document.all["QtyENG02"].value == "") ||
	(document.all["SPA02"].checked  && document.all["QtySPA02"].value == "") ||
	(document.all["ITA02"].checked  && document.all["QtyITA02"].value == "") ||
	(document.all["GER02"].checked  && document.all["QtyGER02"].value == "") ||
	(document.all["FRE02"].checked  && document.all["QtyFRE02"].value == "")) { missinginfo += "\n     -  13-a. Add-On (with free 7-night Royal Caribbean Cruise for two.) Languages"; }
}


if (document.all["AddOn06"].checked)
{
	if (!document.all["ENG03"].checked && !document.all["SPA03"].checked && !document.all["SPA03"].checked && !document.all["GER03"].checked && !document.all["FRE03"].checked) { missinginfo += "\n     -  12-a. Add-On (with free 7-night Carnival Cruise for two.) Languages"; }

	if ((document.all["ENG03"].checked  && document.all["QtyENG03"].value == "") ||
	(document.all["SPA03"].checked  && document.all["QtySPA03"].value == "") ||
	(document.all["SPA03"].checked  && document.all["QtyITA03"].value == "") ||
	(document.all["GER03"].checked  && document.all["QtyGER03"].value == "") ||
	(document.all["FRE03"].checked  && document.all["QtyFRE03"].value == "")) { missinginfo += "\n     -  13-a. Add-On (with free 7-night Carnival Cruise for two.) Languages"; }
}

if (document.all["AddOn07"].checked)
{
	if (!document.all["ENG04"].checked && !document.all["SPA04"].checked && !document.all["ITA04"].checked && !document.all["GER04"].checked && !document.all["FRE04"].checked) { missinginfo += "\n     -  12-a. Add-On (with free 7-night stay for six.) Languages"; }

	if ((document.all["ENG04"].checked  && document.all["QtyENG04"].value == "") ||
	(document.all["SPA04"].checked  && document.all["QtySPA04"].value == "") ||
	(document.all["ITA04"].checked  && document.all["QtyITA04"].value == "") ||
	(document.all["GER04"].checked  && document.all["QtyGER04"].value == "") ||
	(document.all["FRE04"].checked  && document.all["QtyFRE04"].value == "")) { missinginfo += "\n     -  13-a. Add-On (with free 7-night stay for six.) Languages"; }
}


if (document.all["TasteParadise05"].checked)
{
	if (!document.all["ENG05"].checked && !document.all["SPA05"].checked && !document.all["ITA05"].checked && !document.all["GER05"].checked && !document.all["FRE05"].checked) { missinginfo += "\n     -  12-b. Taste of Paradise® (Standard)  Languages"; }

	if ((document.all["ENG05"].checked  && document.all["QtyENG05"].value == "") ||
	(document.all["SPA05"].checked  && document.all["QtySPA05"].value == "") ||
	(document.all["ITA05"].checked  && document.all["QtyITA05"].value == "") ||
	(document.all["GER05"].checked  && document.all["QtyGER05"].value == "") ||
	(document.all["FRE05"].checked  && document.all["QtyFRE05"].value == "")) { missinginfo += "\n     -  13-b. Taste of Paradise® (Standard)  Languages"; }
}

if (document.all["TasteParadise06"].checked)
{
	if (!document.all["ENG06"].checked && !document.all["SPA06"].checked && !document.all["ITA06"].checked && !document.all["GER06"].checked && !document.all["FRE06"].checked) { missinginfo += "\n     -  12-b. Taste of Paradise® (with free 7-night Royal Caribbean Cruise for two.)  Languages"; }

	if ((document.all["ENG06"].checked  && document.all["QtyENG06"].value == "") ||
	(document.all["SPA06"].checked  && document.all["QtySPA06"].value == "") ||
	(document.all["ITA06"].checked  && document.all["QtyITA06"].value == "") ||
	(document.all["GER06"].checked  && document.all["QtyGER06"].value == "") ||
	(document.all["FRE06"].checked  && document.all["QtyFRE06"].value == "")) { missinginfo += "\n     -  13-b. Taste of Paradise® (with free 7-night Royal Caribbean Cruise for two.)  Languages"; }
}

if (document.all["TasteParadise07"].checked)
{
	if (!document.all["ENG07"].checked && !document.all["SPA07"].checked && !document.all["ITA07"].checked && !document.all["GER07"].checked && !document.all["FRE07"].checked) { missinginfo += "\n     -  12-b. Taste of Paradise® (with free 7-night Carnival Cruise for two.)  Languages"; }

	if ((document.all["ENG07"].checked  && document.all["QtyENG07"].value == "") ||
	(document.all["SPA07"].checked  && document.all["QtySPA07"].value == "") ||
	(document.all["ITA07"].checked  && document.all["QtyITA07"].value == "") ||
	(document.all["GER07"].checked  && document.all["QtyGER07"].value == "") ||
	(document.all["FRE07"].checked  && document.all["QtyFRE07"].value == "")) { missinginfo += "\n     -  13-b. Taste of Paradise® (with free 7-night Carnival Cruise for two.)  Languages"; }
}

if (document.all["TasteParadise08"].checked)
{
	if (!document.all["ENG08"].checked && !document.all["SPA08"].checked && !document.all["ITA08"].checked && !document.all["GER08"].checked && !document.all.elements["FRE08"].checked) { missinginfo += "\n     -  12-b. Taste of Paradise® (with free 7-night stay for six.)  Languages"; }

	if ((document.all["ENG08"].checked  && document.all["QtyENG08"].value == "") ||
	(document.all["SPA08"].checked  && document.all["QtySPA08"].value == "") ||
	(document.all["ITA08"].checked  && document.all["QtyITA08"].value == "") ||
	(document.all["GER08"].checked  && document.all["QtyGER08"].value == "") ||
	(document.all["FRE08"].checked  && document.all["QtyFRE08"].value == "")) { missinginfo += "\n     -  13-b. Taste of Paradise® (with free 7-night stay for six.)  Languages"; }
}


//if (document.all.elements["14enrollment"].value == "") {missinginfo += "\n     -  Enrollment";}
//if (!document.all.elements["15a"].checked && !document.all.elements["15b"].checked) {missinginfo += "\n     -  13. HSI membership delivery";}

if (document.all["16trial"].value == "") {missinginfo += "\n     -  14. Trial/Exit";}
if (document.all["17rescission"].value == "") {missinginfo += "\n     -  15. Rescission period";}
if (document.all["18target"].value == "") {missinginfo += "\n     -  16. Target Market";}
if (document.all["19target"].value == "") {missinginfo += "\n     -  16. minimum down payment";}

if (document.all["20target"].value == "") {missinginfo += "\n     -  16. Tour flow";}

if (document.all["VOOPC"].value == "") {missinginfo += "\n     -  16. Vacation Ownership - OPC";}
if (document.all["VOInHouse"].value == "") {missinginfo += "\n     -  16. Vacation Ownership - In-House";}

if (document.all["TEOPC"].value == "") {missinginfo += "\n     -  16. Trial/Exit - OPC";}
if (document.all["TEInHouse"].value == "") {missinginfo += "\n     -  16. Trial/Exit - In-House";}




if (!document.all["OnLineEnrollment"][0].checked && !document.all["OnLineEnrollment"][1].checked && !document.all["OnLineEnrollment"][2].checked){
	{ missinginfo += "\n     -  16. Online Enrollment"; }
}




if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to correctly fill in your:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else return true;


}


//-->

