/*
if (self != top) {
    if (document.images)
        top.location.replace(window.location.href);
    else
        top.location.href = window.location.href;
}
*/
function setFocus(){
	document.forms[0].uName.focus();
}
function spambot(mailbox, domain, name) {
	 if (name == null){
   name = mailbox + "@" + domain
   }
   document.write("<a href=\"mailto");
   document.write(":" + mailbox + "@");
   document.write(domain + "\">" + name + "<\/a>");
}
function showLarge(largeImg) {
	showImage = window.open(largeImg, 'showImg', 'width=640,height=485,resizable=1,status=0,scrollbars=0,toolbar=0,menubar=0');
	showImage.focus()
}
function setMenuItem(num){
	if(document.getElementById("menu" + num)){
		menu = document.getElementById("menu" + num);
		var menuStatus = (menu.style.display == 'none') ? 'block' : 'none';
		menu.style.display = menuStatus;
	}
}