<!--
var onlineServicingPopUp = ''
var printPopUp = ''
var rollOutClassName='';

function showHelpText( text ) {
  document.getElementById('helpText').innerHTML = text;
}

function rollover( elementId ) {
 /* ensure that any existing class is applyed with the new rollover class */
 var rollOutClassName =document.getElementById(elementId).className;
 document.getElementById( elementId ).className = rollOutClassName + " " + 'rollover' ;
}

function rollout( elementId ) {
  /* set back to the original class Name */
  var rollOverClassName =document.getElementById(elementId).className;
  var rollOutClassName = rollOverClassName.split( ' ' )[0];
   document.getElementById( elementId ).className = rollOutClassName;
}

function printPopup( url ) {
  if (!printPopUp.closed && printPopUp.location) {
    printPopUp.close();
  }
  printPopUp = window.open( url, 'Print_View', 'toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=0,width=650,height=500');
  printPopUp.focus();
}

function popup( url ) {
  if (!onlineServicingPopUp.closed && onlineServicingPopUp.location) {
    onlineServicingPopUp.close();
  }
  onlineServicingPopUp = window.open(url, 'OnlineServicing', 'toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=1,width=650,height=500');
  onlineServicingPopUp.focus();
}

function cancelApplication( text ) {
  if ( confirm( text ) ) {
    self.close();
  }
	return false;
}

function finishApplication( text ) {
  alert( text )
  self.close();
	return false;
}

//-->

