var CurrentElementID='display0';

function MouseOverDisplay(ElementID) {
	//NOTE: ShowLayerAll() and HideLayerAll functions defined in /webinterface/inc/templatescript.js
	if (CurrentElementID!='') {
		HideLayerAll(CurrentElementID);
	}
	ShowLayerAll(ElementID);
	CurrentElementID = ElementID;
}