var PopW;
PopW=0;


function CI(who,what)
{

 tt='m'+who;
 path='img/topmenu/';

 mE=document.getElementById(tt); // menu Top
 img=who;
 if (what==1)
 {
  img=img+'-over';
 };

 mE.src=path+img+'.gif';
 
};


function CIM(who,what)
{

 tt='m'+who;
 
 mE=document.getElementById(tt); // menu Top
 cl='menuTd';
 if (what==1)
 {
  cl='menuTdOver';
 };

 mE.className=cl;
 
};


function pop(img,w,h)
{
  ww = w + 30;
  hh = h + 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=100, top=100, resizable=no, scrollbars=no');
  PopW.focus();
}

function popFscroll(img,w,h)
{
  stepLeft=100;
  stepTop=100;
  ww = w + 40;
  hh = h + 50;
  path='img/'+img;

  if (ww > 800){ww = 800};
  if (hh > 600){hh = 600};

  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=yes');
  PopW.focus();
};

function PopClose()
{
  PopW.close();
  PopW=0
};


