function popUp(param1) {

}

function showExample() {
}
function showOptions()
{
	with (document.forms['shippingform']) {
		if ( ship_method[0].checked ) {
		  SaturdayPickup.disabled =     false;
		  SaturdayDelivery.disabled =     false;
		  NonStdPackaging.disabled =    true;
		  Insurance.disabled =         false;
  
		  if (Insurance.checked)
		     InsAmount.disabled =     false;
		  else
		     InsAmount.disabled =     true;

		  ReqSignature.disabled =     false;
		  NoSignature.disabled =         false;
		  COD.disabled =         true;
		  CODAmount.disabled =        true;
		  Hold.disabled =         false;
		  AutoPOD.disabled =         true;
		  AOD.disabled =         true;
		  DeliveryConfirm.disabled =    true;
		  NotifyShip.disabled =         false;
		  NotifyDeliver.disabled =     false;
		  EveningHome.disabled =        true;
		  AppointmentHome.disabled =    true;
		  DateCertainHome.disabled =     true;
		  DCDate.disabled =         true;
		  Residential.disabled =        true;
	}
	} // end with
}