function FindElement(sId) {
	var o = null;
	if (document.getElementById)
		o = document.getElementById(sId);
	if (!o && document.all)
		o = document.all[sId];
	return o;
}
function OpenMailPopup(sUrl) {
	window.open(sUrl, "kk", "width=600,height=720,scrollbars=1,menubar=0");
	return false
}
