<!--
/*Funktionen fuer die nav*/
function mOver(cell)
{	if (!cell.contains(event.fromElement))
	{	cell.style.cursor = 'hand';
   	}
}

function mOut(cell)
{	if (!cell.contains(event.toElement))
   	{	cell.style.cursor = 'default';
  	}
}
function mOverColor(cell)
{	if (!cell.contains(event.fromElement))
	{	cell.style.cursor = 'hand';
    	cell.bgColor = '#C6C1A4';
   	}
}

function mOutColor(cell)
{	if (!cell.contains(event.toElement))
   	{	cell.style.cursor = 'default';
    	cell.bgColor = '#F7F1CD';
  	}
}

function mClick(cell)
{	if(event.srcElement.tagName=='TD')
   	{	cell.children.tags('A')[0].click();
   	}
}


/*Rechtsklick unterbinden*/
function right(e)
{	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
	{	alert("Copyright by Salon Wyss");
		return false;
	}
	return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

/*LoadMain*/
function load(x)
 {
 top.frames['main'].location.href = x ;
 }
//-->


