function checkAddScheduleToMySchedules() {
	responseVal = "false";
	new Ajax.Request('CheckAccountToAddSchedule.php', {
 	 method: 'get',
 	 onSuccess: function(transport) {
	 	if (transport.responseText.replace(/(\r|\n)/, "") == "true") {
			//Modalbox.show("<b>ok to add schedule</b>", {title: "Update", width: 450});
			document.addschedule.submit();
		} else {
			Modalbox.show("<table><tr><td><font color=\"#3e6db1\">You have reached the subscription limit of public schedules for a Lite account.  To add more schedules upgrade to a Pro account.</font></td></tr><tr height=\"5\"><td>&nbsp;</td></tr><tr><td><center><input type=\"button\" value=\"Okl\" onclick=\"Modalbox.hide()\"  /></center></td></tr></table>", {title: "Reached Account Limit", width: 450});
		}
  	  }
	});
	
	return false;
}

function checkAddSchedule() {
	responseVal = "false";
	new Ajax.Request('CheckAccountToAddSchedule.php?addSchedule=true', {
 	 method: 'get',
 	 onSuccess: function(transport) {
	 	if (transport.responseText.replace(/(\r|\n)/, "") == "true") {
			//Modalbox.show("<b>ok to add schedule</b>", {title: "Update", width: 450});
			//document.addschedule.submit();
			window.location.href="create_schedule_name";
		} else {
			Modalbox.show("<table><tr><td><font color=\"#3e6db1\">You have reached the limit of public schedules you can create for a Lite account.  To add more schedules upgrade to a Pro account.</font></td></tr><tr height=\"5\"><td>&nbsp;</td></tr><tr><td><center><input type=\"button\" value=\"Okl\" onclick=\"Modalbox.hide()\"  /></center></td></tr></table>", {title: "Reached Account Limit", width: 450});
		}
  	  }
	});
	
	return false;
}

function checkAddScheduleToMySchedulesBySid(sid) {
	responseVal = "false";
	new Ajax.Request('CheckAccountToAddSchedule.php', {
 	 method: 'get',
 	 onSuccess: function(transport) {
	 	if (transport.responseText.replace(/(\r|\n)/, "") == "true") {
			//Modalbox.show("<b>ok to add schedule</b>", {title: "Update", width: 450});
			eval('document.addschedule_'+sid+'.submit()');
		} else {
			Modalbox.show("<table><tr><td><font color=\"#3e6db1\">You have reached the subscription limit of public schedules for a Lite account.  To add more schedules upgrade to a Pro account.</font></td></tr><tr height=\"5\"><td>&nbsp;</td></tr><tr><td><center><input type=\"button\" value=\"Okl\" onclick=\"Modalbox.hide()\"  /></center></td></tr></table>", {title: "Reached Account Limit", width: 450});
		}
  	  }
	});
	
	return false;
}