function flipImage(sender)
{
	if (sender.src.indexOf('_over.')>-1)
	{
		sender.src = sender.src.replace("_over.",".");
		sender.style.cursor="";
	}
	else
	{
		sender.src = sender.src.replace(".gif","_over.gif");
		sender.style.cursor="pointer";
	}
}

function onConfirmGoto(message, anURL)
{
	if (confirm(message))
	{
		location.href = anURL;
	}
}

function updateRightFrame()
{
	parent.frameRight.location.href = parent.frameRight.location.href;
}

function emptySimpleSearchForm()
{
	if ( parent && parent.frameleft && parent.frameleft.document ) {

	with (parent.frameLeft.document.searchform)
	{
		search.value='';
		// rwh 061205 min_ek_preis.value='';
		// rwh 061205 max_ek_preis.value='';
		// rwh 061205 menge.value='';
		search.focus();	
	}
	}
}