/* $Id: layoutns4.js 426 2004-08-17 10:59:57Z Q155856 $ */
/* code to fix bugs in Netscape 4.x CSS implementation */
/* prevent overlapping layout */
var delta=parseInt(ids.alles.width) - window.innerWidth;
if (delta > 0) {
  window.innerWidth=parseInt(ids.alles.width)+30;
  location.reload();
  alert("Nicht erschrecken, ich mußte das Fenster vergrößern, um das Layout lesbar darstellen zu können.\nDies ist jedoch nur bei Netscape 4.x notwendig.");
 }
/* Make image URIs absolute due to relative URI resolution bug */
function adduriprefix (object) {
  var image = object.backgroundImage.split("(");
  //  object.backgroundImage = image[0] + "(/" + image[1];
}
adduriprefix(ids.body);
adduriprefix(ids.alles);
adduriprefix(ids.header);
adduriprefix(ids.footer);
adduriprefix(ids.footerbottom);
/* fix remaining styles */
with (ids.header) {
  position="relative";
  left="-2px";
  top="-2px";
  padding="0";
}
with (ids.footer) {
  position="relative";
  top="-8px";
  width="799px";
}
with (ids.footerbottom) {
  position="relative";
  paddingTop="30px";
  width="799px";
  top="-32px";
}
with (tags.blockquote) { 
  borderWidth="0.1px";
  borderStyle="none";
  borderColor="white";
}

