function getWidth(_el) {
	var agt=navigator.userAgent.toLowerCase();
  	var net6 = ((((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1))) && ( parseInt(navigator.appVersion) >= 5));

	var _tmp;

	if (net6) {
		_tmp=document.getElementById(_el);
	 	return parseInt(_tmp.offsetWidth);
	} else {
		if (document.all) {
			_tmp=eval('document.all.'+_el);
			return _tmp.offsetWidth;
		} else {
			_tmp=eval('document.'+_el);
			return _tmp.clip.width;
		}
	}
}