function mouseOver(id){
	document.getElementById(id).style.backgroundColor="#F7BF38"
	document.getElementById(id).style.color="#000000"
	document.getElementById(id).style.filter="Alpha(Opacity=80)"
}
function mouseOut(id){
	document.getElementById(id).style.backgroundColor="#84ABB1"
	document.getElementById(id).style.color="#FFFFFF"
	document.getElementById(id).style.filter="Alpha(Opacity=50)"
}
function pageLoad(page){
	parent.frames.frmMain.location = page
}
