// JavaScript Document

	//SHOW PROCCESING ANIMATION
	function showLoading(){		
		window.document.getElementById("loading").style.display = "block"; //show animation
		window.document.getElementById("myform").style.display = "none"; //hide form
		return true;
	}
	
	//SHOW ERROR MESSAGES
	function showErrors(msg){
		window.document.getElementById("loading").style.display = "none"; //hide animation
		window.document.getElementById("myform").style.display = "block"; //show form
		document.getElementById("mymsg").innerHTML = "<font color=\"red\">"+msg+"<\/font>";
		return true;
	}
	
	//REDIRECT TO VIEW RECORD
	function redirect(basedir,record){
		//window.document.getElementById("loading").style.display = "none"; //hide animation
		window.document.getElementById("myform").style.display = "none"; //none
		var url = basedir + "?action=view&id=" + record;
		window.document.location.href = url;
		//window.location.reload();
		return true;
	}
