// JavaScript Document

function setClass(ele,class2){
   document.getElementById(ele).className=class2;
}

function sendResponse(){
   Lightbox.show('graphics/send_ok_de.jpg','Danke');
}
function updateResponseDiv(req) 
{
	document.getElementById('content').innerHTML= req.xhRequest.responseText;
} 

function go_visible(){
$("wrapper_left").className="visible";
$("wrapper_right").className="visible";
}

function catalog(){
var url=window.location.href;
var lang=url.substr(url.indexOf("lang=")+5,2);
switch(lang)
{
case "de":
  window.open("order.php?lang=de","tew","width=453,height=423,scrollbars=no,location=no");
  break    
case "en":
  window.open("order.php?lang=en","tew","width=453,height=423,scrollbars=no,location=no");
  break
case "fr":
   window.open("order.php?lang=fr","tew","width=453,height=423,scrollbars=no,location=no");
  break    
case "ru":
   window.open("order.php?lang=ru","tew","width=453,height=423,scrollbars=no,location=no");
  break  
default:
  
}
}
