function getLink (url, target) {
	if (target == '' || target == '_self') {
		document.location.href=url;
	} else {
		window.open(url);
	}
}

function writeBookmarkLink(title) {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		document.writeln("<a href=\"javascript:window.external.AddFavorite(document.URL,document.title);\" onMouseOver=\"WA_overNext(this)\" onMouseOut=\"WA_outNext(this)\"><img src=\"/sc/STBNCIRA/img/ic_bookmark0.gif\" width=\"12\" height=\"9\" alt=\" \" border=\"0\" name=\"preload\">"+title+"</a>");
	}
}
