// Function to clear out default text from text boxes
function clearText(f)
{
    if (f.defaultValue==f.value)
        f.value = ""
}

function refreshCaptcha() 
{
    document.images["captcha"].src = '/captcha_image.asp?' + Math.random();
}


