function divdisplay() {
   displayHintDiv();
   displayDate();
   setVisDisp('jurisWarning', false);
}

function displayHintDiv() {
      setVisDisp('hintDiv', getFormObject(contractFormName, 'hintDisplay').checked == true);
}

function displayDate() {
   //setVisDisp('dateDiv', getFormObject(contractFormName, 'executionDate').value == 'specific');
	setVisInline('signSpecifyDiv',getObject('signChoice').value=='specified');	
}

function doCountryChange() {
   getFormObject(contractFormName, 'governingLawExp').selectedIndex = 0;
}

function checkVars() {
   if (getFormObject(contractFormName, 'governingLawExp').selectedIndex == 0) {
      setVisDisp('jurisWarning', true);
      getFormObject(contractFormName, 'governingLawExp').focus();
      return false;
   }
   else {
      return true;
   }
}
