
function bookmarkit(){
	window.external.addFavorite('http://www.kenbolt.com','KENBOLT FASTENERS CO.,LTD')
}

function boldHref(type_index)
{
	var obj = document.getElementById("href_type" + type_index);
	if(obj != null)
	{
		obj.className = "bold_href";
	}
	for(var i = 1; i <= 4; i++)
	{
		if(type_index != i)
		{
			obj = document.getElementById("href_type" + i);
			if(obj != null)
			{
				obj.className = "";
			}
		}
	}
}
