var PopW;
PopW=0;

function mup(N,Level)
{
  if (!Level) {Level=""}
  if (Level=1){Level="../"}
  if (Level=2){Level="../../"}
  tdid='m'+N+'td';
  imgid='m'+N+'img';
  td=document.getElementById(tdid);
  img=document.getElementById(imgid);
  td.className='menuTdU';
  img.src=Level+'img/menu/arrow-up.gif';
}

function mout(N,Level)
{
  if (!Level) {Level=""}
  if (Level=1){Level="../"}
  if (Level=2){Level="../../"}
  tdid='m'+N+'td';
  imgid='m'+N+'img';
  td=document.getElementById(tdid);
  img=document.getElementById(imgid);
  td.className='menuTd';
  img.src=Level+'img/menu/arrow.gif';
}

function pop(img,type,wIn,hIn)
{
  if (!type) {type=1};

  switch (type)
  {
    case 1:
    {
      w = 640;
      h = 480;
      break;
    }
    case 2:
    {
      w = 360;
      h = 480;
      break;
    }
    case 3:
    {
      w = wIn;
      h = hIn;
      break;
    }
  };
  ww = w + 30;
  hh = h + 33;
  path='/img/pics/'+img

  if (PopW) {PopClose();};
  PopW=window.open('/pop.html?'+path+'&'+w+"&"+h,'poppic','marginheight=0,marginweight=0,toolbar=no,width='+ww+',height='+hh+', left=100, top=100, resizable=no, scrollbars=no');
  PopW.focus();
}

function popF(img,wIn,hIn,stepLeft,stepTop)
{
  if (!stepLeft) {stepLeft=100;};
  if (!stepTop) {stepTop=25;};
  w = wIn;
  h = hIn;
  ww = wIn + 30;
  hh = hIn + 33;
  path='/img/'+img

  if (PopW) {PopClose();};
  PopW = window.open('/pop.html?'+path+'&'+w+"&"+h,'poppic','marginheight=0,marginweight=0,toolbar=no,width='+ww+',height='+hh+', left='+stepLeft+', top='+stepTop+', resizable=no, scrollbars=no');
  PopW.focus();
};

function popFscroll(img,wIn,hIn)
{
  stepLeft=10;
  stepTop=10;
  w = wIn;
  h = hIn;
  ww = wIn + 40;
  path='/img/'+img

  if (PopW) {PopClose();};
  PopW = window.open('/pop.html?'+path+'&'+w+"&"+h,'poppic','marginheight=0,marginweight=0,toolbar=no,width='+ww+',height='+700+', left='+stepLeft+', top='+stepTop+', resizable=no, scrollbars=yes');
  PopW.focus();
};

function PopClose()
{
  PopW.close();
  PopW=0
};


function Sale(who)
{
  if (PopW) {PopClose();};
  path='/sales/';

  file=path+who+'.html';

  w=400;
  h=250;
  l=150;
  t=50;

  corp=who.charAt(0);
  if (corp>=2)
  {
     h=550;
  };
    
  PopW = window.open(file,'popsale','marginheight=0,marginweight=0,toolbar=no,width='+w+', height='+h+', left='+l+', top='+t+', resizable=no, scrollbars=yes');
  PopW.focus();
};

function PopPage(path,w,h,t,l)
{
  if (!t) {t=50};
  if (!l) {l=150};
  if (PopW) {PopClose();};
   
  PopW = window.open(path,'poppage','marginheight=0,marginweight=0,toolbar=no,width='+w+', height='+h+', left='+l+', top='+t+', resizable=no, scrollbars=no');
  PopW.focus();
};