
function showPopOver(event, url, width, height, left, top){
	var target = document.getElementById("popover");
	target.style.left = left;
	target.style.top = top;
	target.style.width = width;
	target.style.height = height;
	target.style.display = "block";
	target.style.zIndex = 11000;
	target.innerHTML = "<iframe name=searchFrame src='" + url + "' width=100% height=100 frameBorder=0 SCROLLING=NO>";
}

function closePopOver(){
	var target = document.getElementById("popover");
	target.style.left = "0px";
	target.style.top = "0px";
	
	target.style.width = "10px";
	target.style.height = "10px";
	target.style.display = "none";
	
	target.innerHTML = "";
}