function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}

function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}

function mOvr(src,clrOver,ignorecursor) {
	 if (ignorecursor == true) {
	 	src.style.cursor = 'default';
 	 } else {
	 	src.style.cursor = 'hand';
	 }
	 src.bgColor = clrOver; src.style.color = '#FFFFFF';}

function mOut(src,clrIn) {
	 src.style.cursor = 'default'; src.bgColor = clrIn; src.style.color='#000000'; }
	 
function smOvr(src,ignorecursor) {
	 if (ignorecursor == true) {
	 	src.style.cursor = 'default';
 	 } else {
	 	src.style.cursor = 'hand';
	 }
	 src.style.color='#FF9933';
}

function smOut(src) {
	 src.style.cursor = 'default'; 
	 src.style.color='#FFFFFF';
}

function redirect(url)
{
window.location=url;
}