// 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 = 'http://www.michaelmanagement.com/captcha_image.asp?' + Math.random();
}

