function HO_GetObjectHeight(ojjekt)
	{
	var ojjekt_height = 0;
//alert(HO_Browser["browser_name"]);
	switch (HO_Browser["browser_name"])
		{

	/* Konqueror */

		case 'Konqueror':
				switch (HO_Browser["main_version"])
					{
					case '3.4':
					case '3.5':
					case '3.9':
					case '4':
					default:
							ojjekt_height = HO_GetObj(ojjekt).offsetHeight;
						break;
					}
			break;

	/* Microsoft Internet Explorer */

		case 'Microsoft Internet Explorer':
				switch (HO_Browser["main_version"])
					{
					case 6:
					case 7:
					default:
							ojjekt_height = HO_GetObj(ojjekt).offsetHeight;
					//		ojjekt_height = HO_GetObj(ojjekt).offsetHeight - HO_GetObj(ojjekt).offsetTop;
						break;
					}
			break;



	/* Firefox, Netscape, Mozilla */

		case 'Netscape':
		case 'Firefox':
		case 'Mozilla':
				switch (HO_Browser["main_version"])
					{
					case 2:
					case 3:
					default:
							ojjekt_height = HO_GetObj(ojjekt).offsetHeight;
						break;
					}
			break;

	/* Opera */

		case 'Opera':
				switch (HO_Browser["main_version"])
					{
					case '9.51':
					default:
							ojjekt_height = HO_GetObj(ojjekt).offsetHeight;
					//		ojjekt_height = HO_GetObj(ojjekt).offsetHeight - HO_GetObj(ojjekt).offsetTop;
					//		alert(ojjekt_height + " = " + HO_GetObj(ojjekt).offsetHeight + " - " + HO_GetObj(ojjekt).offsetTop);
						break;
					}
			break;


	/* Others */

		default:
				ojjekt_height = HO_GetObj(ojjekt).offsetHeight;
			break;
		}
	return ojjekt_height;
	}
