
function openShow(indexpage) {
	mainWindow = window.open(indexpage,"","toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes,resizable=yes,width="+screen.availWidth+",height="+screen.availHeight);
	mainWindow.focus();
}


function getemail(username, hostname) {
var atsign = "@";
var mail2 = "mai"+"lto:";
var linktext = username + atsign + hostname;
document.write("<a href=" + mail2 + linktext + ">" + linktext + "</a>")
}


function ShowHide(obj) {
	if(document.getElementById){
		divs = document.getElementsByTagName("div");
		if(divs[obj].style.position=="static") {
			divs[obj].style.position="absolute";
			divs[obj].style.left="-2000px";
			divs[obj].style.top="-200px";	//enough to move the tallest div above minimun page height
		}
		else{
			divs[obj].style.position="static";
		}
	}
}


function toggledisplay(fieldid) {
	state=document.getElementById(fieldid).style.display;
	if (state == 'none') state = 'block';
	else state = 'none';
	document.getElementById(fieldid).style.display = state;
}


function show(fieldid) {
   document.getElementById(fieldid).style.display = 'block';
}

function hide(fieldid) {
   document.getElementById(fieldid).style.display = 'none';
}

