function OpenSubWin(sFile, nX, nY) {
	var oSubWin;
	var sUrl;
	if (sFile.substring(0, 1) == "/") {
		sUrl = "http://" + location.hostname + sFile;
	} else {
		sUrl = "http://" + location.hostname + "/" + sFile;
	}
	oSubWin = window.open("", "SubWin", "width="+nX+",height="+nY+",scrollbars=yes,resizable=yes");
	oSubWin.location.href = sUrl;
	return;
}

function mailTo(sMail, oThis) {
	var sText;
	sText = oThis.innerText;
	oThis.href = "mailto:" + sMail;
	if (sText) oThis.target = "_blank";
	oThis.innerText = sText;
	return;
}

function show_onclick(id) {
	if (document.getElementById) {
		document.getElementById("hide-" + id).style.display = "inline";
		document.getElementById("button-" + id).style.display = "none";
	} else if (document.all) {
		document.all("hide-" + id).style.display = "inline";
		document.all("button-" + id).style.display = "none";
	}
}

