// <a href="html-or.jpg" onclick="return popup(this,123,456)" title="..."
// or
// <a href="html-or.jpg" onclick="return popup(this)" title="..."

var pop = null;

function windowPopDown() {
  if (pop && !pop.closed) {
  	pop.close();
  }
}

function windowPopUp(obj,w,h) {
  var url = (obj.getAttribute) ? obj.getAttribute('href') : obj.href;
  if (!url) {
  	return true;
  }
  w = (w) ? w += 20 : 150;  // 150px*150px is the default size
  h = (h) ? h += 25 : 150;
  var args = 'width='+w+',height='+h+',resizable=yes,scrollbars=yes,locationbar=no';
  windowPopDown();
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}

window.onunload = windowPopDown;
window.onfocus = windowPopDown;


function changeSelectBoxText()
{
	var text = 'Alle Rubriken';
	if(document.forms['search_mod'].mst_rid.value == '0') text = 'Alle Rubriken'; 
	if(document.forms['search_mod'].mst_rid.value == '240') text = 'EDV'; 
	if(document.forms['search_mod'].mst_rid.value == '60') text = 'Elektro-Großgeräte'; 
	if(document.forms['search_mod'].mst_rid.value == '32') text = 'Elektro-Kleingeräte'; 
	if(document.forms['search_mod'].mst_rid.value == '132') text = 'Fitness & Wellness'; 
	if(document.forms['search_mod'].mst_rid.value == '175') text = 'Garten & Heimwerken'; 
	if(document.forms['search_mod'].mst_rid.value == '28') text = 'Kaffee & Espresso'; 
	if(document.forms['search_mod'].mst_rid.value == '123') text = 'Raum-Klima'; 
	if(document.forms['search_mod'].mst_rid.value == '11') text = 'TV, DVD & SAT'; 
	if(document.forms['search_mod'].mst_rid.value == '241') text = 'Telekommunikation'; 
	if(document.forms['search_mod'].mst_rid.value == '208') text = 'Warm-Wasser'; 
	document.forms['search_mod'].search_select_text.value = text;
}