//add favorite
function add_favorite(){
	var title = document.title;
	var url = document.URL;
	if (document.all) window.external.AddFavorite(url,title);
	else if (window.sidebar) window.sidebar.addPanel(title,url,"");
}
function set_first(obj,vrl){

    obj.style.behavior='url(#default#homepage)';
    obj.setHomePage(vrl);
}
/*
document.domain = "eone.com";
function autoIframe(iframeID){
	var py = document.getElementById(iframeID).contentWindow.pageYOffset;
	var sh = document.getElementById(iframeID).contentWindow.document.body.scrollHeight;
	var ch = document.getElementById(iframeID).contentWindow.document.body.clientHeight;
	var oh = document.getElementById(iframeID).contentWindow.document.body.offsetHeight;
	if (document.all)
	{
		document.getElementById(iframeID).style.height = (sh + sh - oh) + "px";
	} else {
		document.getElementById(iframeID).style.height = (sh + oh - ch) + "px";
	}
}
*/