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

function show_favorites(tag, fav_id)
{
	if(!document.all) {
		alert("IE 전용 입니다.");
		return;
	}
	var fav_tag = document.getElementById(fav_id);
	if(fav_tag.style.height == "0px") {
		fav_tag.style.height = "309px";
		show_over(tag);
	} else {
		fav_tag.style.height = "0px";
		show_out(tag);
	}
}

