
//	********************************************************************************
//	Get Element
//	********************************************************************************

	function getEl(el) {
		if (document.getElementById)	return document.getElementById(el);
		if (document.all)				return document.all[el];
	}

	function getmouseXY() {
		bbmx	= window.event.clientX + document.body.scrollLeft;
		bbmy	= window.event.clientY + document.body.scrollTop;
	}


