﻿
function hamepage(){
		document.write('<a onclick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'http://ggw.hnbc.com.cn\');" href="#">设为首页</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a style="cursor:hand" onclick="window.external.AddFavorite(location.href,document.title);" href="#">加入收藏</a>')
}
Event.observe(window, 'load', function(){ 
	if (!document.getElementsByTagName) return; 
	var anchors = document.getElementsByTagName("a"); 
	for (var i=0; i<anchors.length; i++) { 
	   var anchor = anchors[i]; 
	   if (anchor.getAttribute("href") && 
		   anchor.getAttribute("rel") == "external") 
		 anchor.target = "_blank"; 
	} 
	Event.observe($("collection"),"click",function(){
												   window.external.AddFavorite(location.href,document.title);
												   });
});