// redirect to indexif (top.location == self.location) {	top.location.href = "/";}/*if (top.frames.length > 0) {void(0);}else {top.location = "/";}*/// remove dotted borderfunction removeDot() {	for (a in document.links) document.links[a].onfocus = document.links[a].blur;}if (document.all) {	document.onmousedown = removeDot;}file:function blurLinks() {if (document.links)for (var i=0; i< document.links.length; i++)document.links[i].onfocus = function() {if(this.blur)this.blur()}}function blurAnchors() {if (document.getElementsByTagName) {var a = document.getElementsByTagName("a");for (var i=0; i< a.length; i++)a[i].onfocus = function() {if(this.blur)this.blur()}}}function blurInputs() {if (document.getElementsByTagName) {var a = document.getElementsByTagName("input");for (var i=0; i< a.length; i++)a[i].onfocus = function() {if(this.blur)this.blur()}}}function start() {blurLinks();blurAnchors();blurInputs();}window.onload = start;