// Java-Script


function div_oben(wert) {
    //var left = (Math.round(wert[2]/100)*12.1);
    //var width = ((wert[2]/100)*86);
    var left = (Math.round(wert[2]/100)*11.5);
    var width = (Math.round(wert[2]/100)*85);
	if (width <= 1024)
		width = 1100;    
    var height = wert[4];
    var paddingTop = ((wert[7]/100)*2);
    //alert("Height : " + height);
	document.write("<div id=\"oben\" style=\"left:" + left + "px; top:0%;" +
	"padding-top:" +  paddingTop +  "px; width:" + width + "px; height:" +  height + "px\">");
	//document.write("<div id=\"oben\">");
	document.write(" <a href=\"javascript:Anschrift()\" " + 
	"onmouseover=\"on(201); return true\" " + 
	"onmouseout=\"off(201); return true\">" +
	"<img id=\"logo\" src=\"images/default/afl_logo.gif\" alt=\"Anschrift\" /></a> ");
  	document.write("</div>");
	return true;
  	}
