
function openURL(url,titel,width,height,scrollbars,resizable,mode)	
{
	mode_show ='';
	if(mode== 'true') mode_show ='?mod_mode=2&shop=1';
	Fenster = window.open(url + mode_show, titel, "top=2,left=2,width="+width+",height="+height+",scrollbars="+scrollbars+",resizable="+resizable+"");
}

function rowOverEffect(object) {
  if (object.className == 'moduleRow') object.className = 'moduleRowOver';
}

function rowOutEffect(object) {
  if (object.className == 'moduleRowOver') object.className = 'moduleRow';
}




wmtt = null;

document.onmousemove = updateWMTT;

function updateWMTT(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x + 15) + "px";
		wmtt.style.top 	= (y + 28) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}