

// 
function startSlideShow(d) {
if(d.length < 1) { return; }
	var counter = 0;
	var str = "";
	while( document.getElementById("flashContent_" + counter) != undefined ){
		if( "flashContent_" + counter != d ){
			document.getElementById("flashContent_" + counter).stopSlideShow();
			str += "flashContent_" + counter + "\n";
		}
		counter++;
	}
	//alert("stopping:\n" + str);
}

function openWindow (url) {
  myWindow = window.open(url, "myWindow", "width=990, height=500, scrollbars=yes, location=no");
  myWindow.focus();
}

function openImprint (url) {
  myWindowImprint = window.open(url, "myWindow", "width=420, height=630, scrollbars=no, location=no");
  myWindowImprint.focus();
}