/*======================================================================*\
|| #################################################################### ||
|| # gBook 0.1 FINAL                                                  # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2005 fFuel                                            # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- gBook IS A FREE SOFTWARE ---------------------- # ||
|| #               Home: http://fFuel.jino-net.ru                     # ||
|| #################################################################### ||
\*======================================================================*/

function fetch_object_posleft(elm) {
	var left = elm.offsetLeft;
	while((elm = elm.offsetParent) != null) {
		left += elm.offsetLeft;
	}
	return left;
}
function fetch_object_postop(elm) {
	var top = elm.offsetTop;
	while((elm = elm.offsetParent) != null) {
		top += elm.offsetTop;
	}
	return top;
}
function showC(id,obj) {
	document.getElementById("commentDialog").style.left = document.body.clientWidth / 2 - 150 + "px";
	document.getElementById("commentDialog").style.top = fetch_object_postop(obj) + 25 + "px";
	document.getElementById("commentDialog").style.display = "";
	document.getElementById("recN").value = id;
}
function hideC(id) {
	document.getElementById("commentDialog").style.display = "none";
}
function addsm(what,sm) {
	obj = document.getElementById(what);
	obj.value += ":" + sm + ":";
}
