// JavaScript Document
function clearText(thefield){
if (thefield.defaultValue==thefield.value) thefield.value = "";
} 

function restoreText(thefield,thetext) {
if (thefield.value == '') thefield.value = thetext;	
}

function goURL(thisdoc){
if (thisdoc.linkURL.options[thisdoc.linkURL.selectedIndex].value != 'none') {
location = thisdoc.linkURL.options[thisdoc.linkURL.selectedIndex].value;
}
}

