<!--
function openwindow(page,width,height){
	var temp = window.open(page,"","width="+width+",height="+height+",resizable=no,scrollbars=no");
}
function openwindow2(page,width,height){
	var temp = window.open(page,"","width="+width+",height="+height+",resizable=yes,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 jump(the_page,the_sub,the_item){
	var undef;
	var theloc = "http://"+location.host+location.pathname+"?page="+the_page;
	if (the_sub != undef) theloc = theloc+"&sub="+the_sub;
	if (the_item != undef) theloc = theloc+"&item="+the_item;
	window.location= theloc;
}

function change_image(the_image){
	var the_code = "document.display.src='media/full/"+the_image+".jpg';";
	eval(the_code);
	var the_text=document.getElementById(the_image).alt;
	document.getElementById('caption').setAttribute('innerHTML',the_text);
	document.getElementById('caption').innerHTML = the_text;
}

// -->
