function mm_showHide(id)
{
	a=document.getElementById(id);
	if(a.style.display != 'none' && a.style.display != 'block') a.style.display='none';
	if(a.style.display == 'block') {
		a.style.display='none';
	}
	else {
		a.style.display='block';
	}
	return false;
}
function mm_alert_delete_category(nr_products){
	var msg='';
	
		msg="Are you sure you want to remove this flyer?\n";

	return confirm(msg);
}



<!--

var running = true;
var xnew    = 0;
var x       = 0;
var reverse = false;

function nextScroll(){

  if (document.all)
    x = document.body.scrollLeft;
  else
    x = window.pageXOffset;


  if (x == xnew - 1)
    reverse = true;
  else if (x == 0)
    reverse = false;

  if (reverse)
    xnew = x - 1;
  else
    xnew = x + 1;

  window.scroll(xnew, 0);
}

function startScroll() {
  running = setInterval("nextScroll()", 35);
}

function stopScroll() {
  clearInterval(running);
}

function PageLoaded() {
  startScroll();
}

window.onload=PageLoaded;

//-->
