
// open printable version of website
function openPrintable(breite,hoehe,path,name){	
		var preview = window.open (path, name, 'width=' + breite + ', height=' + hoehe + ', status=0, toolbar=0, menubar=0, resizable=1, scrollbars=auto, fullscreen=0, left='+(screen.width/2-breite/2)+',top='+(screen.height/2-hoehe/2)+',screenX='+(screen.width/2-breite/2)+',screenY='+(screen.height/2-hoehe/2));
		preview.focus();
}