/*JS Function for myCal Managing*/

/*
 * Add show to myCal
 */
function addShowTomyCal(day,show_id) {
	  Lightview.show({
	    href: '/edizione/myCalAddShow/' + day + '/' + show_id,
	    rel: 'ajax',
	    options: {
	      autosize: true,
	      topclose: true,
	      ajax: {
		  		method: 'get'
		  }
	    }
	  });
	  var mycalLink = document.getElementById('myCalLink');
	  show.style.display='block';
	  
};

/*
 * Remove show from myCal
 */
function removeShowFrommyCal(day,show_id) {
	  Lightview.show({
	    href: '/edizione/myCalRemoveShow/' + day + '/' + show_id,
	    rel: 'ajax',
	    options: {
	      autosize: true,
	      topclose: true,
	      ajax: {
		  		method: 'get'
		  }
	    }
	  });
	  var show = document.getElementById(show_id);
	  show.style.display='none';
};