function initValidation() {
            var objForm = document.forms["upload"];
            objForm.err = "Please fill in the following fields:\n\n";
            
            objForm.Fname.required = 1;
            objForm.Fname.minlength = 2;
            objForm.Fname.regexp = /^\w*$/;
            
            objForm.Lname.required = 1;
            objForm.Lname.minlength = 2;
            objForm.Lname.regexp = /^\w*$/;
            
            objForm.email.required = 1;
            objForm.email.regexp = "JSVAL_RX_EMAIL";

            objForm.description.required = 0;
            objForm.userupload.required = 0;
            objForm.link.required = 0;
}
function progress() {
	var text = document.getElementById("uploading");
	var fileName = document.getElementById("file").value;
	if (fileName != "") {
			text.style.display = "block";
			text.style.visibility = "visible";
		//	text.style.visibility = "hidden";
	
	}
}

function initClear(text) {
    if ( text.value == "Enter any relevant information here. (NO HTML PLEASE)" ) {
        text.value = "";
    }
}
