// DISPLAYS EVENTS IN A NEW WINDOW
function new_window(arg){
	var url_string = "http://www.tamuslsamp.org/events/view_event.php?event_id=" + arg;
	window.open(url_string,'','width=800,height=600,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no');	
}

function expand_label(label_id,text){
	document.getElementById(label_id).innerHTML = text;
}

function clear_label(label_id){
	document.getElementById(label_id).innerHTML = "";	
}

// WEEKLY REPORT VALIDATION
function wr_validation(){

	var wr=document.getElementById("wr");
			
	if(wr.uin.value=="" || wr.fname.value=="" || wr.lname.value=="" || wr.email.value=="" || wr.ment_meet.value=="" || wr.grad_meet.value=="" || wr.cweek.value=="" || wr.nweek.value==""){
		alert("You must fill out all required fields before proceeding ...");
	}
	else{	
		var conf = confirm("Proceed with submission?");
	
		if(conf){	
			wr.submit();
		}
	}
	
}	