// OverZ v0.1a
function mouseIn(object, headt, text, border, tp) {
	popUp = document.createElement("div");
	popUp.setAttribute("id","popup");
	head = document.createElement("div");
	head.style.cssText = "background:#" + border + "; color:#fff; font-weight:bold; padding:2px 0 2px 4px; text-decoration:none;";
	head.appendChild(document.createTextNode(headt));
	txt = document.createElement("div");
	txt.style.cssText = "padding:11px;";
	txt.innerHTML = text;
	popUp.appendChild(head);
	popUp.appendChild(txt);
	popUp.style.cssText = "width:668px; border:1px solid #" + border + "; text-align:left; background:#eff5fb; position:absolute; " + tp + " left:-9px; font-family:Tahoma, Geneva, sans-serif; font-size:12px; text-decoration:none;";
	object.appendChild(popUp);
}

function mouseOut() {
	document.getElementById("popup").parentNode.removeChild(document.getElementById("popup"));
}
