function goQuickLink(qtarget) 
{
	if (qtarget.length > 0)  
	{
		if (qtarget != "index")		
		{
			this.document.location = qtarget + ".html";
		}
		else
		{
			this.document.location = qtarget + ".htm";
		}
	}
}
	function goBack() {
	history.go(-1);
}
	function goForward() {
	history.go(1);
}
