function bookmarkRefresh()
{
	var tree = document.getElementById('bookmarkTree');
	var xmlhttp = new XMLHTTP();
	xmlhttp.open('/include/bookmarktree');
	xmlhttp.send();
	tree.innerHTML = xmlhttp.getText();
}

function DicoFavorites(width, height)
{
	document.writeln('<object classid="clsid:B28CFE79-D2C0-4ECD-A5B0-77F340FF0D08" codebase="http://activex.off.co.kr/DicoFavorites.cab#version=1,0,0,8">');
	document.writeln('<param name="Height" value="' + height + '">');
	document.writeln('<param name="Width" value="' + width + '">');
}

function DicoFavoritesClose()
{
	document.writeln('</object>');
}

