
 var baseText = null;

      function wsh_flashchart_showPopup(w,h){

      var popUp = document.getElementById("wsh_flashchart_popupcontent");

      popUp.style.top = "20px";

      popUp.style.left = "0px";

      popUp.style.width = w + "px";

      popUp.style.height = h + "px";

      if (baseText == null) baseText = popUp.innerHTML;

      popUp.style.visibility = "visible";

var sbar = document.getElementById("statusbar");

sbar.style.marginTop = "0px";
sbar.style.marginRight = "100px";

      }
			
	
      function wsh_flashchart_hidePopup(){
      var popUp = document.getElementById("wsh_flashchart_popupcontent");
      popUp.style.visibility = "hidden";
      }



function wsh_ss_sharepop(section,obj)
{
	
	var curleft = 700;
	var curtop = 250;
	if (obj.offsetParent) {
		do {
			curleft += obj.offsetLeft;
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
	}


document.getElementById(section).style.display='block';
  document.getElementById(section).style.position = 'absolute';
  document.getElementById(section).style.left = curleft + 'px';
  document.getElementById(section).style.top = curtop + 'px';
 
}

