function videoPlay() {
	var l_dt = new Date();
	var today = Date.UTC(l_dt.getFullYear(), l_dt.getMonth()+1, l_dt.getDate(),l_dt.getHours(),l_dt.getMinutes(),l_dt.getSeconds());
	
	var LdtYear = "2010";
	var LdtMonth = "07";
	var LdtDay = "16";
	var LdtHours = "19";
	var LdtMinutes = "30";

	starttime = Date.UTC( LdtYear, LdtMonth , LdtDay, LdtHours, LdtMinutes,0);
	
	if ( starttime > today ){
		alert("Broadcast begins at 5:30pm on Friday, July 16th.");
		return 1;
	} else {
		window.location = "video.php";
	}
}
