$("#opentext").css('display','none');
$("#opentext").click(function(b) {
b.preventDefault();
if ($("#opentext").css('display') == "none") {
$("#opentext").show('fast');
}
else {
$("#opentext").hide('fast');
}
});

		function ShowHide(shID)
		{
			var myObj=document.getElementById(shID)
			if (myObj.style.display=='')
			{
				myObj.style.display='none'
			}
			else
			{
				myObj.style.display=''
			}	
		}
		
function showpopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

