
<!-- 
function openPopUp(sourcefile, w, h) {
    window.open(sourcefile,"menu1","width="+w+",height="+h+",scrollbars=yes,menubar=no,toolbar=no,screenX=100,screenY=30,left=100,top=30");
}

function newWindow(address,width,height,scroll) {
    contentsWindow = window.open(address, "contentsWin","width="+width+",height="+height+",scrollbars="+scroll+"");
    return false;
}

var focusStyle = "font-weight:bold; background-color:#d7dce0";
var blurStyle = "font-weight:normal;background-color:#f0f0f0";
var hasFocus = "";

function labelFocus(field) {
	hasFocus = field.name;
	elem = field.name + '_label';
	document.getElementById(elem).style.cssText = focusStyle;
}
function labelBlur(field)  {
	elem = field.name + '_label';
	document.getElementById(elem).style.cssText = blurStyle;
	hasFocus = "";
}

function showDetails(rowid,imgid) {
	if (rowid.style.display == "none") {
		rowid.style.display = "";
		imgid.src = "/images/contract2.gif";
	}
	else {
		rowid.style.display = "none";
		imgid.src = "/images/expand2.gif";
	}
}

function showEmail(name,domain, displayname) {
    if (displayname == '')
        document.write('<a href="mailto:'+name+'@'+domain+'">'+name+'@'+domain+'</a>')
    else
        document.write('<a href="mailto:'+name+'@'+domain+'">'+displayname+'</a>')
}


-->





