/* indexchild.js: standard script for navi frame of index frameset */

// Keep in frame
	if (self.parent.frames.length == 0)
	{
		self.parent.location="index.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;
