// Copyright © Aurlaea. All Rights Reserved

function setnotes(){
	notes = document.getElementById("notes");
	if(notes.value != '' && notes.value != ' '){
		calnotes = notes.value.split("\r\n").join("-nnx77420-");
		calnotes = calnotes.split("\n").join("-nnx77420-");
		createCookie(cookiename, calnotes, 730, 'calendar/');
		document.getElementById('current').setAttribute("class", "dhnotes");
		document.getElementById('current').className = "dhnotes";
		alert('Your Calendar Notes have been saved.');
	} else {
		if(confirm("There are no Calendar Notes for "+calnotesdate+",\nwould you like to clear them instead?")){
			eraseCookie(cookiename, 'calendar/');
			document.getElementById('notes').value = '';
			document.getElementById('current').removeAttribute('class');
			document.getElementById('current').className="";
		}
	}
	
}

function clearnotes(){
	if(confirm("Do you want to clear your Calendar Notes\nfor "+calnotesdate+"?")){
		eraseCookie(cookiename, 'calendar/');
		document.getElementById('notes').value = '';
		document.getElementById('current').removeAttribute('class');
		document.getElementById('current').className="";
	}
}
function checkchars(){
	ta = document.getElementById('notes');
	if (ta.value.length > 1000)
		ta.value = ta.value.substring(0, 1000);
}
function openhelp(){
	window.open('help.html', 'help', 'width=530, height=300, directories=no, location=no, menubar=no, resizable=no, scrollbars=1, status=no, toolbar=no');
}