// HELP WINDOW SCRIPT 

// JavaScript by: Steven Garner
// March 10, 2005
// Natural Mathematics v2.5+
// www.naturalmathematics.com

// Variables used:
// f, g, h, x


<!--
	var f = 0;
	var x = 40;

	var g = 0;
	var h = 40;

function open_index(){
 if(x>170&&f==0){f=1;return;}
 if(x<1&&f==1){f=0;return;}
 if(f)increment=-20;if(!f)increment=20;x=x+increment;
 e=document.getElementById("help");
 e.style.width = x + 'px';
 t=setTimeout("open_index();",0);
}
// -->




