//startTimer ---- Timer Function for refereshing the Layers

var dImg = '';
var CImg = dImg;
var cLayer = '';
var j = false;
var gTO = null;

function startTimer(layername) {
	gTO = setTimeout("MM_showHideLayers('" + layername + "','','hide')", 1000);
}

//stopTimer ---- Timer Function for refereshing the Layers
//(when mouse is over, the layer would still exist, else, it will disappear even it is mouse over)
function stopTimer() {
	if (gTO) {
		clearTimeout(gTO);
		gTO = null;
	}
	return true;
}

//-->

