	function confirmdel()
	{	
		return confirm('Are you sure you want to Delete?');
	}
	
	function allselect()
	{
		var read = document.getElementById('read').value;		
		if(read>0)
		{
			for(i=0; i<read; i++)
			{
				var c='read'+i;
				document.getElementById(c).checked=true;
			}
		}
		
		var unread = document.getElementById('unread').value;		
		if(unread>0)
		{
			for(i=0; i<unread; i++)
			{
				var c='unread'+i;
				document.getElementById(c).checked=true;
			}		
		}
	}
	
	function back_reply()
	{
		window.location.href = script_url+"/gym-enquiries.html";
	}
	
	function display_number_of(type)
	{
		if(type=="s"){
			document.getElementById("number_of").style.display='none';
		}
		else if(type=="m"){
			document.getElementById("number_of").style.display='block';
		}
	}
	
	var cnt;
	function wordcount(count)
	{
		var words = count.split(/\s/);
		cnt = words.length;
		var ele = document.getElementById('w_count');
		ele.value = cnt;
	}	
	
	function update_gym()
	{	
		alert("Your membership is expired now. Currently you are not allowed to update gym info.");	
	}	
