// JavaScript Document
// ANOTHER BAKERY
// www.anotherbakery.de

<!-- Begin
var OpenImprint;
function showImprint() {
self.name = "main"; // names current window as "main"

windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=1,resizable=0,width=550,innerWidth=550,height=400,innerHeight=400";

OpenImprint = window.open("imprint/index.htm", "Imprint", windowprops); // opens site
OpenImprint.focus();
}

//  End -->