var secs;
var timerID = null;
var delay = 1000;
function pageLoad(){
	start_slider();
	secs=10;
	StartTheTimer();
}
function StartTheTimer(){
	if (secs==0) {
		document.getElementById("message_ok").innerHTML=" ";
	} else {
		secs = secs - 1;
		timerID = self.setTimeout("StartTheTimer()", delay);
	}
}
function displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.returnValue = true;
}
function go_back() {
	if (history.length > 1) {
		history.back()}
}

function start_slider(){
	// Dummy function
	return;
	}
function OpenMenu(MenuId) {
	document.getElementById(MenuId).style.visibility = 'visible';
	}
function CloseMenu(MenuId){
	document.getElementById(MenuId).style.visibility = 'hidden';
	}
function MouseOver(TDId){
	document.getElementById(TDId).style.background = '#FFCC00';
	}
function MouseOut(TDId){
	document.getElementById(TDId).style.background = '#000000';
	}
