var LastMapLink
function wsMapHover(o){
	s = new String(o.href)
	ptr=s.lastIndexOf("'") 
	s=s.slice(1,ptr)
	ptr=s.lastIndexOf("'") + 1
	s=s.slice(ptr,9999999)
	wsMapOut()
	aMap=document.getElementById(s)
	aMap.className="aON"
	LastMapLink=aMap
}
function wsMapOut(){
	if(LastMapLink != undefined){
		LastMapLink.className="aOFF"
		}
}
function wsMapLink(o,s){
	aMap=document.getElementById(s)
	window.open(aMap,s)
}
function wsMapClick(){
}
