<!-- //hide from old browsers

function goToApp(appid)
{
var newURL = "applications.asp?appid=" + appid
window.location.replace(newURL)
}

function showMenu(menu,tabno)
{
hideMenu()
var photo = "images/" + tabno + "_ona.jpg"
if (typeof tabno != 'undefined') 
{document[tabno].src = photo}

document.getElementById(menu).style.display = "inline";

}

function hideMenu()
{
document.tab2.src = "images/tab2_offa.jpg"
document.tab3.src = "images/tab3_offa.jpg"
document.tab4.src = "images/tab4_offa.jpg"
document.tab5.src = "images/tab5_offa.jpg"
document.tab6.src = "images/tab6_offa.jpg"


document.getElementById("menu1").style.display="none"
document.getElementById("menu2").style.display="none"
document.getElementById("menu3").style.display="none"
document.getElementById("menu4").style.display="none"
document.getElementById("menu5").style.display="none"
document.getElementById("blankmenu").style.display="none"

}

function hideMenu2()
{
setTimeout('clearMenus()',810);
}



function clearMenus()
{
document.tab2.src = "images/tab2_offa.jpg"
document.tab3.src = "images/tab3_offa.jpg"
document.tab4.src = "images/tab4_offa.jpg"
document.tab5.src = "images/tab5_offa.jpg"
document.tab6.src = "images/tab6_offa.jpg"

document.getElementById("menu1").style.display="none"
document.getElementById("menu2").style.display="none"
document.getElementById("menu3").style.display="none"
document.getElementById("menu4").style.display="none"
document.getElementById("menu5").style.display="none"
document.getElementById("blankmenu").style.display="inline"
}

function check()
{
var a = document.getElementById("mpane").offsetHeight
var b = document.getElementById("lpane").offsetHeight
var c = parseInt((a+60)-b)
document.getElementById("lnavBottom").style.pixelHeight = c;
}


function test()
{
var height = document.getElementById("submenu").style.height
alert(height)
}

function test2()
{
var height = document.getElementById("maintable").offsetWidth
alert(height)
}

function popWin(file,h,w) 
{

var sWidth = screen.width
w = eval(w)
var oset = w + 10
var lefpos = (sWidth-oset)

windowAttributes = "top=5px,left="+lefpos+",width=" + w + ",height=" + h + ",scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,status=0"
nwin = window.open(file,"demoWindow",windowAttributes);
nwin.focus();
}

function setBookmark(url,str){
if(str=='')str=url;
if (document.all)window.external.AddFavorite(url,str);
else alert('Press CTRL and D to add a bookmark to:\n"'+url+'".');
} 

function validate_search()
{
if (document.searchform.kwords.value == "")
	{
	return false ;
	}
else
	{
	return true ;
	}
}

function validate_addmail()
{
if (document.mailform.mailAdd.value == "")
	{
	alert("Please add your email address and try submitting the form again")
	return false ;
	}
else
	{
	return true ;
	}
}


 // -->
