/* right click bar */ function click() { if (event.button==2) { alert ('Copyright Failsworth School') } } document.onmousedown=click /* search validation */ function isInserted(look) { value = look.value.replace(/^\s*|\s*$/g,""); if (value == "" || value == null) return false; else return true; } function isReady(form) { if (isInserted(form.sp) == false || form.sp.value=="Enter Search Phrase") { alert ("Please enter something to search for then click 'Go' again!"); form.sp.focus(); return false; } return true; } function clearField(thefield){ if (thefield.defaultValue==thefield.value) thefield.value = "" }