function showPopUp(x,y,z) {
	document.getElementById(x).style.top=y +"px";
	document.getElementById(x).style.left=z +"px";
}

function hidePopUp(x) {
	document.getElementById(x).style.top="-999999px";
}
