if (top.location != self.location) {    top.location = self.location}//contactfunction contact(url) {  var outside = window.open (url, "contactwindow", "width=380,height=400,scrollbars,resizable,status,menubar,toolbar,location");  if(outside.focus) outside.focus();}//popup windowfunction pow(url) {  var pow = window.open (url, "testwindow", "width=550,height=350,scrollbars,resizable,status,menubar,toolbar,location");  if(pow.focus)pow.focus();}// menufunction selectNode(id) {node = document.getElementById("subMn" + id);if (node) {if (node.open){node.style.display = "none";node.open = false;}else {node.style.display = "block";node.open = true;}}macie =	(navigator.appVersion.indexOf("MSIE 5")>-1 && navigator.appVersion.indexOf("Mac")>-1);if(macie) {		window.resizeBy(0,1);		window.resizeBy(0,-1);	}}
// target
sfTarget = function() {
	var sfEls=document.getElementsByTagName("H4");
	var aEls = document.getElementsByTagName("A");
	document.lastTarget = null;
	for (var i=0; i<sfEls.length; i++) {
		if (sfEls[i].id) {
			if (location.hash==("#" + sfEls[i].id)) {
				sfEls[i].className+=" " + cls;
				document.lastTarget=sfEls[i];
			}
			for (var j=0; j<aEls.length; j++) {
				if (aEls[j].hash==("#" + sfEls[i].id)) aEls[j].targetEl = sfEls[i]; aEls[j].onclick = function() {
					if (document.lastTarget) document.lastTarget.className = document.lastTarget.className.replace(new RegExp(" sftarget\\b"), "");
					if (this.targetEl) this.targetEl.className+=" sftarget"; document.lastTarget=this.targetEl;
					return true;
				}
			}
		}
	}
}
if (document.all&&document.getElementById) window.onload=sfTarget;

// http://www.htmldog.com/articles/suckerfish/target/
