//Displays the save report form and the hides report form link
function showSaveReport(){
	document.getElementById('show_save_report').style.visibility='hidden';
	document.getElementById('show_save_report').style.display='none';
	document.getElementById('hide_save_report').style.display='inline';
	document.getElementById('hide_save_report').style.visibility='visible';
	document.getElementById('save_report_form').style.visibility='visible';
	document.getElementById('save_report_form').style.display='block';
}
//Hides the save report form and displays the show save report link
function hideSaveReport(){
	document.getElementById('show_save_report').style.visibility='visible';
	document.getElementById('show_save_report').style.display='inline';
	document.getElementById('hide_save_report').style.display='none';
	document.getElementById('hide_save_report').style.visibility='hidden';
	document.getElementById('save_report_form').style.visibility='hidden';
	document.getElementById('save_report_form').style.display='none';
}
//Displays a box before report removal
function removeReport(a){
	//Shows a confirmation box to delete a periodic report
	if(window.confirm('Are you sure you want to delete this report ?')){
		location = a;
	} else {
		location = "#";
	}
}
//Displays a box before reports removal
function removeReports(a){
	//Shows a confirmation box to delete a periodic report
	if(window.confirm('Are you sure you want to delete all your reports ?')){
		location = a;
	} else {
		location = "#";
	}
}