function openPopup(urlt,nme,hei,widt)
{
	window.open(urlt, nme,"width="+widt+",height="+hei+",menubar=no,location=no,resizable=no,scrollbars=no,status=no");
}

function openWindow(urlt,nme,options) 
{
   window.open(urlt, nme,options);

}

function startSearch() {
   sq = document.searchForm.sq.value;
}

function toggle( targetId ){ 
  if (document.getElementById){ 
        target = document.getElementById( targetId ); 
           if (target.style.display == "none"){ 
              target.style.display = ""; 
           } else { 
              target.style.display = "none"; 
           } 
     } 
} 