// breaks the site out of frames if loaded in someone elses site
// -------------------------------------------------------------
if (self.location.href != top.location.href) {
top.location.href = self.location.href;
}

// selectively show/hide divs

function showhideDetail(layer_ref) {

	var numclients = 9;
	var numservices = 2;
	var numdetails = numservices+numclients;
	

	for (i=0; i< numdetails; i++) {
		if (i != layer_ref) {
			 document.getElementById('detail_'+i).style.display = 'none';
		} else {
		 	document.getElementById('detail_'+i).style.display = 'block';
		}
	}
}

function getDefaultTrue(formItem) {
  if(formItem.selectedIndex==0) {
    formItem.selectedIndex=1;
  }
}

function getDefaultFalse(formItem) {
  if(formItem.selectedIndex==0) {
    formItem.selectedIndex=2;
  }
}