function doNothing() {
}

function hasThreeControls(){
	return (document.getElementById('heureMidd') != null)? true: false;
}

/**************************************************************************************
	Function: disableViewButton
	Author: Shayne Brioux
	Date: Jan 2008
	Purpose:	The purpose of this function is to hide the view button when JS is turned
				on.
***************************************************************************************/
function disableViewButton(){/*{{{*/
	/*Added noscript tags to the HTML since the view button is not disabled until after
	  the body is finished loading.  This function is no longer required to hide the 
	  button		- Sherman Kwong, Mar 13, 09 */
	var viewButton = document.getElementById("View");//Get a handle to the view button
	viewButton.style.display = "none";//Using CSS hide the button.
	if(hasThreeControls()){
		var viewButtonMidd = document.getElementById("ViewMidd");//Get a handle to the view button
		viewButtonMidd.style.display = "none";//Using CSS hide the button.
	}
	var viewButtonBott = document.getElementById("ViewBott");//Get a handle to the view button
	viewButtonBott.style.display = "none";//Using CSS hide the button.
}/*}}}*/


