/*function getOffsetLeft(id){	
   var evalString = new String('document.getElementById(\'' + id + '\')')
	var offset = document.getElementById(id).offsetLeft
	for(i=0; i < 1000; i++){
		var tagName = eval(evalString+'.tagName') 
	   evalString += '.parentNode'
	   if(tagName != 'BODY' && navigator.appName.indexOf('Explorer') > -1){
		  offset += eval(evalString + ".offsetLeft")
		}
		else {
				i = 100000
				return offset
		}
	}
}
*/

function getOffsetLeft(id)
		{
			oElement = document.getElementById(id)
			var iReturnValue = 0;
			while( oElement != null )
			{
				iReturnValue += oElement.offsetLeft;
				oElement = oElement.offsetParent;
			}
			document.getElementById('searchForm').style.top = '468px'
			return iReturnValue;
		}

function getOffsetTop(id)
		{
			oElement = document.getElementById(id)
			var iReturnValue = 0;
			while( oElement != null )
			{
				iReturnValue += oElement.offsetTop;
				oElement = oElement.offsetParent;
			}
			return iReturnValue;
		}