// JavaScript Document

function over(r) {
document.getElementById(r).style.background='#FEE54A';
document.getElementById(r).className='linkV';
}
function out(r) {
document.getElementById(r).style.background='';
document.getElementById(r).className='link';
}
function href(r){
window.location.href=r;
}


function popup() {
	var x = screen.width;
	var y = screen.height;
	x = x-475;
	y = y-262;
	x = Math.round(x/2);
	y = Math.round(y/2);
	var map = window.open("/~smo/map.html","","width=475,height=262");
	map.moveTo(x,y);
}

function show(div) {
document.getElementById(div).style.display='';	
}

function hide(div) {
document.getElementById(div).style.display='none';	
}