function over(){
	if(obj=event.srcElement)
		if(obj.className=="flyoutLink"){
			obj.style.backgroundColor='#B5BED6'
			obj.style.borderColor = '#08246B'
		}
}
function out(){
	if(obj=event.srcElement)
		if(obj.className=="flyoutLink"){
			obj.style.backgroundColor='#f1f1f1'
			obj.style.borderColor = '#f1f1f1'
		}
}
function show(d){
	if(obj=document.all(d))	obj.style.display=""
}
function hide(d){
	if(obj=document.all(d))	obj.style.display="none"
}

document.onmouseover=over
document.onmouseout=out

              

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
