function OW(src, i, w, h)
{
      if(i==0)
      {
              window.open(src , '_blank' ,"fullscreen=no,channelmode = no,toolbar = no, location = no,status = no,menubar= no,scrollbars= Yes, resizable= yes,width =" + w + ", height=" + h + ", top = 20, left = 40");
      }
      else
      {
              window.open(src ,'_blank' ,"fullscreen=no,channelmode = no,toolbar = no,location = no,status = no,menubar= no,scrollbars= Yes,resizable= yes,width=" + w + ", height=" + h + ", top = 20, left = 40");
      }
}


function showSubmenu(uid)
{
	var item=document.getElementById(uid);
	item.style.display='inline';
}

function hideSubmenu(uid)
{
	var item=document.getElementById(uid);
	item.style.display = 'none';
}

function setHand(link)
{
	link.style.cursor = 'Hand';
}

