
	function disp_confirm(destination){
		var r=confirm("Are you sure ?")
		if (r==true){
			window.location.assign(destination)
		}
	}
	
	function toogle(id){
		
		obj = document.getElementById(id);
		
		if(obj.style.display=='none'){
			obj.style.display='block';
		}else{
			obj.style.display='none';
		}
		
	}

