function openWin(URL, scroll, width, height) {
	options = 'width=' + width + ',height=' + height + ',resizable=yes';
	if (scroll) options += ',scrollbars=yes';
	newWin = window.open(URL, 'WebManager', options);
}
function popup(URL) {
	openWin(URL, 1, 600, 400);
}
function changeImage(imgId, imgUrl) {
	document.getElementById(imgId).src = imgUrl;
}
function liam(x1, x2, x3, x4, x5) {
	if (x1 == 0) {
		if (x5 == '') x5 = x4 + "@" + x2;
		document.write("<a href=" + "ma" + "ilt" + "o:" + x4 + "@" + x2 + ">" + x5 + "</a>");
	} else {
		document.write(x4 + "@" + x2);
	}
}
function handleEnterKey(evt, action) {
	var evt = (evt) ? evt : ((event) ? event : null);
	var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
	if ((evt.keyCode == 13) && (node.type=="text")) {
		eval(action);
		return false;
	} else {
		return true;
	}
}
