function isIE() {
	return (document.all)? true:false; 
}


function getPosition(el){
      for(var lx=0,ly=0 ; el!=null ; lx+=el.offsetLeft,ly+=el.offsetTop,el=el.offsetParent);
      return {x:lx,y:ly}
}
