function changeCalendar(mDif){
	$.ajax({
		type: "GET",
		url: "include/calendar.php",
		data: "mDif="+mDif,
		success: function(data){
			$("#calCont").html(data);
			$("#homeCalAbout").fancybox({'autoDimensions':false,'width':400,'height':100,'padding':10,'scrolling':'no','titleShow':false,'transitionIn':'fade','transitionOut':'fade'});
		},
		error: function(){$("#calCont").html('Error retrieving calendar!');}
	});
}

function winPopFull(theURL){window.open(theURL,'FWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+screen.width+',height='+screen.height+',top=0,left=0,fullscreen=yes');}
