<!--
function openwindow(page,width,height){
	var temp = window.open(page,"","width="+width+",height="+height+",resizable=no,scrollbars=yes");
}

function over(the_button){
	var the_code = "document."+the_button+".src="+the_button+"on.src";
	eval(the_code);
}

function notover(the_button){
	var the_code = "document."+the_button+".src="+the_button+"off.src";
	eval(the_code);
}

function dup_over(the_button,which){
	var the_code = "document."+the_button+which+".src="+the_button+"on.src";
	eval(the_code);
}

function dup_notover(the_button,which){
	var the_code = "document."+the_button+which+".src="+the_button+"off.src";
	eval(the_code);
}

function jump(the_page){
	window.location="http://"+location.host+"/index.php?page="+the_page;
}

function jump2sub(the_page,the_sub){
	window.location="http://"+location.host+"/index.php?page="+the_page+"&sub="+the_sub;
}

function SetPageButton(the_section){
	var the_code;
	the_code = the_section+"off.src="+the_section+"on.src";
	eval(the_code);
	over(the_section);
}

var readon=new Image();readon.src='graphics/buttons/read_over.jpg';
var readoff=new Image();readoff.src='graphics/buttons/read.jpg';
// -->