
	function showAnnotation()
	{
		obj = document.getElementById("lnk_show");
		obj.style.display = 'none';
		obj = document.getElementById("annTxt");
		obj.style.display = 'block';
		//obj.style.overflow="visible";
		
	}
	function hideAnnotation()
	{
		obj = document.getElementById("lnk_show");
		obj.style.display = 'block';
		//obj.style.backgroundColor="#dedede";
		obj = document.getElementById("annTxt");
		obj.style.display = 'none';
		//obj.style.overflow="hidden";

	}
	




function openpage(PAGE,WIDTH,HEIGHT) {
  //popup = window.open('/screenshot.php?id=' + ID, '14838', 'width=' + WIDTH + ', height=' + HEIGHT + ', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, copyhistory=no, resizable=yes');

popup = window.open(PAGE, '', 'width=' + WIDTH + ', height=' + HEIGHT + ', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, copyhistory=no, resizable=yes');


    //element.style.left = (document.documentElement.scrollLeft+(document.body.clientWidth -element.clientWidth )/2+x)+'px';
    //element.style.top  = (document.documentElement.scrollTop +(document.body.clientHeight-element.clientHeight)/2+y)+'px';



popup.focus();
return false;
}
