// JavaScript Document

//QUOTE
function submitquote()
{
    if(document.quote.onsubmit && 
    !document.quote.onsubmit())
    {
        return;
    }
 document.quote.submit();
}

function clearquote()
{
    if(document.quote.onsubmit && 
    !document.quote.onsubmit())
    {
        return;
    }
 document.quote.reset();
}
//EOF QUOTE

//CONTACT
function submitcontact()
{
    if(document.contact.onsubmit && 
    !document.contact.onsubmit())
    {
        return;
    }
 document.contact.submit();
}

function clearcontact()
{
    if(document.contact.onsubmit && 
    !document.contact.onsubmit())
    {
        return;
    }
 document.contact.reset();
}
//EOF CONTACT

//CURRICULUM
function submitfile()
{
    if(document.file.onsubmit && 
    !document.file.onsubmit())
    {
        return;
    }
 document.file.submit();
}
// EOF CURRICULUM

// FIELDS CLEANER

function doClear(theText)
{
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }
 
// EOF FIELDS CLEANER
