      function popitup(url) {
        newwindow=window.open(url,'name','height=620,width=400,resizable=yes');
        if (window.focus) {newwindow.focus()}
        return false;
      }
      function popitup00(url) {
        newwindow=window.open(url,'name','height=20,width=240');
        if (window.focus) {newwindow.focus()}
        return false;
      }
      function popitup01(url) {
        newwindow=window.open(url,'name','height=520,width=455,resizable=yes');
        if (window.focus) {newwindow.focus()}
        return false;
      }
      function newWindow(href) {
        window.open(href, 'dr','width=650,height=50,centered=true,scrollbars=yes'); return 'dr';
      }
	function toggle() {
	var ele = document.getElementById("toggleText");
	var text = document.getElementById("displayText");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Show Previous News >>";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Hide Previsous News <<";
	}
} 

