// JavaScript Document

//onload focus

function load()
{
	review_form._reviewersName.focus()
	
}



//Validate from the submit button
function uploadimage_validation ( )
{
	
    valid = true;

    if (document.upload_imageform._file.value == "" )
    {
        alert ( "Please select an image" );
		document.upload_imageform._file.focus();
        valid = false;
    }
	
	


	
	
    return valid;
}












