function checkform(){
	for(i=0; i<document.socialform.elements.length; i++){
		if((document.socialform.elements[i].name) && (document.socialform.elements[i].name != 'picture')){
			if(!document.socialform.elements[i].value){
				/**/
				alert("Please fill out all the fields in the form.\nPlease type 'NA' if no information is available");
				return false;
				exit;
				/**/
				//document.socialform.elements[i].value = 'test';
			}
		}
		else{
			return true;
		}	
	}
	//return true; // remove this after testing
}
function parseform(){
	for(i=0; i<document.socialform.elements.length; i++){
		if(document.socialform.elements[i].name){
			alert(document.socialform.elements[i].name + ": " + document.socialform.elements[i].value);
		}
	}
	return false;
}
