var goojet = {
	hide : function (idDiv)
	{
		var myDiv = document.getElementById(idDiv);
		myDiv.style.display = "none";
		return;
	},
	
	show : function (idDiv)
	{
		var myDiv = document.getElementById(idDiv);
		
		if(myDiv.style.display == "none")
		{
			myDiv.style.display = "block";
		} 
		return;
	},
	
	toggle : function (idDiv)
	{
		var myDiv = document.getElementById(idDiv);
		if(myDiv.style.display == "none") {
			this.show(idDiv);
		} else {
			this.hide(idDiv);
		}
	},
	
	sendSMS : function()
	{
		// fake function for the mobile phone
		return true;
	}, 
	
	display : function(page)
	{
		// Go the the page
		window.location.href = page;
	}
};