﻿// JScript File
function viewBlock(obj)
	{
	    obj.style.visibility = "visible";
	    pos = getElementPosition(obj.previousSibling);
	    obj.style.left = pos.left + 20 + "px"; //event.clientX + 20;
	    obj.style.top = pos.top + 12 + "px"; //event.clientY + 12;
	    return;
	}
	
function hideBlock(obj)
	{
	    obj.style.visibility = "hidden";
	    return;
	}
	
function ShowPanel(obj) {
    flagObject.value = "true";
    obj.style.left = "0px";
    obj.style.display = "block";
    obj.style.visibility = "visible";
    document.getElementById('adsense').style.visibility = "hidden";
}

function HidePanel(obj) {
    flagObject.value = "false";
    obj.style.display = 'none';
    obj.style.visibility = "hidden";
}
