/* indexchild.js: standard script for child frames of index frameset */

// Keep in frame
	if (self.parent.frames.length == 0)
	{
		self.parent.location="../../indexF.html";
	}

// Prevent ugly IE Windows or NS6 Mac focus on <A> links
	function fixIE()
	{
	   for (a in document.links)
	  {
	       document.links[a].onfocus = document.links[a].blur;
	  }
	}
	document.onmousedown = fixIE;
