function on_load()
{
	
// 	new-one:
	var arVersion = navigator.appVersion.split("MSIE")
	var version = parseFloat(arVersion[1])

	if (version >= 6 || isNaN(version))
	{
		var title_element_list = new Array('a', 'tr', 'td', 'th', 'li', 'img', 'span', 'input', 'textarea', 'select', 'area', 'table', 'acronym', 'abbr', 'cite');
		for(var i = 0; i < title_element_list.length; i++)
		{
			for(var j = 0; j < document.getElementsByTagName(title_element_list[i]).length; j++)
			{
				var element = document.getElementsByTagName(title_element_list[i])[j];


// 				if(element.getAttribute('title') != null && element.getAttribute('title').length > 0 && element.getAttribute('onmouseover') == null)
				if(element.title != null && element.title.length > 0 && (element.onmouseover == null || element.onmouseover == ''))
				{
					element.ToolTip=element.title;
					element.removeAttribute("title");
					element.onmouseout=function()
					{
						UnTip();
// 						this.title=this.ToolTip;
						// this.title = tmp_title;
						// delete tmp_title;
					};
					element.onmouseover=function()
					{
// 						this.ToolTip = this.title;
// 						this.title = '';
// 						tmp_title = this.ToolTip;
						// this.title="";
						// this.removeAttribute("title");
						Tip(this.ToolTip);
					};
				}
			}
		}
	} 
	if (version >= 6 || isNaN(version))
	{
		var focus_element_list = new Array('input', 'textarea');
		var first_element = false;
		for(var i = 0; i < focus_element_list.length; i++)
		{
			for(var j = 0; j < document.getElementsByTagName(focus_element_list[i]).length; j++)
			{
				var element = document.getElementsByTagName(focus_element_list[i])[j];
				if((element.getAttribute('onfocus') == null || element.getAttribute('onfocus').length == 0) && element.type != 'hidden')
				{
					element.onfocus=function()
					{
						this.select();
					}
					if(first_element == false)
						first_element = element;
				}
			}
		}
	}
	find_div_2_hide();
// 	alert(first_element);
	if(first_element != false)
		first_element.focus();
	
	// Browser-Update.org
	var $buoop = {vs:{i:7,f:2,o:9.25,s:2,n:9}}
// 	var $buoop = {}
	var e = document.createElement("script");
	e.setAttribute("type", "text/javascript");
	e.setAttribute("src", "http://browser-update.org/update.js");
	document.body.appendChild(e);
}
