function changeBorder(name){  if (document.getElementById)  {    this.obj = document.getElementById(name);	this.style = document.getElementById(name).style;  }  else if (document.all)  {    this.obj = document.all[name];	this.style = document.all[name].style;  }  else if (document.layers)  {   	this.obj = document.layers[name];   	this.style = document.layers[name];  }	this.style.borderBottomColor = '#000000'; 	this.style.borderTopColor = '#000000';}function returnBorder(name){  if (document.getElementById)  {    this.obj = document.getElementById(name);	this.style = document.getElementById(name).style; }  else if (document.all)  {    this.obj = document.all[name];	this.style = document.all[name].style;  }  else if (document.layers)  {   	this.obj = document.layers[name];   	this.style = document.layers[name];  }	this.style.borderBottomColor = '#FFFFFF'; 	this.style.borderTopColor = '#FFFFFF';}function goToURL() { //v3.0  var i, args=goToURL.arguments;  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");}// -->