//DO NOT REMOVE THIS COPYWRITE INFO! //Money to Time Calculator //By Daniel C. Peterson //Web Winder Website Services, 1997-2006 All Rights Reserved. //Distribution, editing or reselling of this script is strictyly prohibited //without expressed written permission from Daniel C. Peterson. //For commercial grade (professional) versions of this and many other //calculators, visit http://www.webwinder.com.
function compute(form) { form.hours.value = (form.money.value / form.rhw.value);
}
function ClearForm(form) { form.rhw.value = ""; form.money.value = ""; form.hours.value = "";
}