
function openwindow(page) {
	window.open(page,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=700, height=400");
}

function closewindow(page) {
	window.close(page);
}


function delconfirm(url) {
var answer=confirm("Are you sure you wish to delete this event from the calendar?")
	if (answer == true) {
		window.location=url;
	}
}

