// JavaScript Document

function printPage() {
	print(document);
	}
	
function selectThis(obj,state){
	if (obj.className=="selected") return false;
	
	if(state){
		obj.className="mouseOver";
		
	} else {
		obj.className=null;
	}
	}
function clickThis(obj){
window.location.href=obj.firstChild.href;
}
