function banking(doThis)
{
	hoverDiv=document.getElementById('bankingForm');
	document.getElementById('bankText').innerHTML = doThis;
	hoverDiv.style.left = (screen.width/2)-125 + 'px';
	hoverDiv.style.top = (screen.height/2)-200 + 'px';
	hoverDiv.style.display = 'inline';
	hoverDiv.style.zIndex = '99';
	document.bank.dothis.value=doThis;
}

function talk()
{
	hoverDiv=document.getElementById('talk');
	hoverDiv.style.left = (screen.width/2)-125 + 'px';
	hoverDiv.style.top = (screen.height/2)-200 + 'px';
	hoverDiv.style.display = 'inline';
	hoverDiv.style.zIndex = '99';
}

function noticeBoard()
{
	hoverDiv=document.getElementById('notice');
	hoverDiv.style.left = (screen.width/2)-400 + 'px';
	hoverDiv.style.top = (screen.height/2)-400 + 'px';
	hoverDiv.style.display = 'inline';
	hoverDiv.style.zIndex = '99';
}

function post_notice()
{
	hoverDiv=document.getElementById('post_notice');
	hoverDiv.style.left = (screen.width/2)-125 + 'px';
	hoverDiv.style.top = (screen.height/2)-200 + 'px';
	hoverDiv.style.display = 'inline';
	hoverDiv.style.zIndex = '99';
}
