<!--
var style;

function setMenu(id)
{
obj = document.getElementById(id);
obj.className = 'menu-h';
return;
}

function swlang(obj,where)
{
obj.className='menu-mclick';
if(where == 1)
  location.href = "../English/index.shtml";
else if (where == 2)
  location.href = "../Francais/index.shtml"; 
 return;
}
function mc(obj,what,where)
{
if (what==1)
 {
  obj.className='menu-mclick';
  if(where==1)
    location.href = "index.shtml";
  else if(where==2)
    location.href = "services.shtml";
  else if(where==3)
    location.href = "products.shtml";
  else if(where==4)
    location.href = "news.shtml";
  else if(where==5)
    location.href = "download.shtml";
  else if(where==6)
    location.href = "contact.shtml";
  else if(where==7)
    location.href = "support.shtml";
  else if(where==8)
    location.href = "order.shtml";
	
 }
else if (what==2)
 {
  style = obj.className;
  obj.className='menu-mover';
 }
else if (what==3)
 obj.className=style;
return;
}
//-->
