// JavaScript Document

function onedayevent(theform){
theform.end_month.options[theform.start_month.selectedIndex].selected=true;
theform.end_day.options[theform.start_day.selectedIndex].selected=true;
theform.end_year.options[theform.start_year.selectedIndex].selected=true;



}

function copycalendertitle(theform){
theform.event_desc.value = theform.event_title.value;
}

function showevent(eventid){
	window.opener.location='/hhsonline/coachsmart/calendar_detail.asp?calendar_id=' + eventid;
	window.opener.focus();
	window.blur()
}

function deleteitem(sLocation){
	if (confirm("Are you sure you wish to delete this item?  This cannot be undone.")) {
		
		window.location=sLocation;
	}else{
		alert("Request cancelled.")
	}
}

function confirmdelete_document(sname, document_id, sfilename){
	if (confirm('Are you sure you wish to delete ' + sname + '?  This is permanent and cannot be undone!')){
			window.location.href='edit_document_exec.asp?document_id=' + document_id + '&sfilename=' + sfilename + '&saction=delete';
			} else {
				alert('Deletion cancelled!')
				
				}


}