function popup(url)
{
	var zentrierenX = (screen.width/2)-250; 
	var zentrierenY = (screen.height/2)-225;
	var pos = "left="+zentrierenX+",top="+zentrierenY; 
	window.open(url,"image","width=500, height=450, resizable=no, scrollbars=no, menubar=no, toolbar=no, directories=no, location=no, status=no, " + pos);
}

function writeFlash(Path,Width,Height,Parameter) {

	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' height='" +  Height + "' width='" + Width + "'>");
	document.write("<param name='movie' value='" + Path + Parameter + "'>");
	document.write("<param name='quality' value='best'>");
	document.write("<param name='play' value='true'>");
	document.write("<param name='menu' value='false'>");
	document.write("<param name='scale' value='noscale'>");
	document.write("<embed scale='noscale' menu='false' height='" + Height + "' pluginspage='http://www.macromedia.com/go/getflashplayer' src='" + Path + Parameter + "' type='application/x-shockwave-flash' width='" + Width + "' quality='best' play='true'>");
	document.write("</object>");
	
}
