// JavaScript Document

function showpropertypopup(elem, object){
	popup = document.getElementById("property_popup");
	popup.style.display = "inline";
	popup.innerHTML = elem;
	popup.style.top = parseInt(object.style.top.slice(0, object.style.top.length-2)) + 37 + "px";
	popup.style.left = parseInt(object.style.left.slice(0, object.style.left.length-2)) - 47 + "px";
}

function hidepropertypopup(){
	popup = document.getElementById("property_popup");
	popup.style.display = "none";
}