//Progress Bar script- by Todd King (tking@igpp.ucla.edu)
//Modified by JavaScript Kit for NS6, ability to specify duration
//Visit JavaScript Kit (http://javascriptkit.com) for script

// to adjust the css see the plus.css page

//alternative progress bar script
function submitBtnClicked()
{
    var item = document.getElementById( "loadingImage" );
    if (item) 
    {
        item.className = 'showProgress';
        setTimeout( 'document.getElementById( "loadingImageSrc" ).src = "/plus/images/loading.gif"', 1 );
    }
}




function submitform(myform)
{
  document.forms[myform].submit();
  submitBtnClicked();
}


