function tabHover(field) {
	field.style.background="#9E9E9E";
	field.style.borderColor="#000000";
}

function tabOut(field) {
	field.style.background="transparent";
	field.style.borderColor="#9E9E9E";
}

function pop_view(page) {
	if (page == 'conduct') {
		window.open("conduct.php","conduct","toolbar=no,location=no,left=1,top=1,height=390,width=600");
	} else	if (page == 'privacy') {
		window.open("privacy.php","privacy_policy","toolbar=no,location=no,left=1,top=1,height=500,width=820");
	} else if (page == 'disclaimer') {
		window.open("disclaimer.php","disclaimer","toolbar=no,location=no,left=1,top=1,height=330,width=600");
	}
}