function wopen(wurl,trgt,h,w,top,left) {
window.open(wurl,trgt,'height='+h+',width='+w+',resizable=yes,scrollbars=yes,menubar=no,status=yes,top='+top+',left='+left+'');
return false;
}
function wopenimg(wurl,trgt,h,w,top,left) {
window.open('mod/wopen.php?p='+trgt+'&url='+wurl+'','new','height='+h+',width='+w+',resizable=yes,scrollbars=yes,menubar=no,status=yes,top='+top+',left='+left+'');
return false;
}
function ShowMenu(mname)
{
	var trans = document.getElementById(mname);
	trans.style.visibility='visible';
}

function HideMenu(mname)
{
	var trans = document.getElementById(mname);
	trans.style.visibility='hidden';
}

 if (document.images)
  {
    var poll_show=new Image;
    poll_show.src="/img/design/h1.gif"
    var poll_hide=new Image;
    poll_hide.src="/img/design/h0.gif"
  }
 function poll(id,items,type)
  {
    if (!document.images)
     {
       return false;
     }
    for (i=1;i<=id;i++)
     {
       if (type=="show")
        {
          document.images["poll_"+items+"_"+i].src=poll_show.src;
        }
       else if (type=="hide")
        {
          document.images["poll_"+items+"_"+i].src=poll_hide.src;
        }
     }
  }
