var xPos = 0, yPos = 0
if(top.frames.length > 0 && self.name!="fileMngPreview"){top.location.href=self.location;}

// --------------------------------- Standard --------------------------------- //

document.onmousedown = getPos;

function getPos(e){
if(document.all){xPos = window.event.screenX; yPos = window.event.screenY;}
else if(document.getElementById){xPos = e.screenX;yPos = e.screenY;}}

function topInfo(cont,target,w,h)
{var topInf = window.open(cont,target,'width='+w+',height='+h+',dependent=yes,resizable=yes,scrollbars=yes,menubar=yes,status=yes'); topInf.focus(); return false;}

// -------------------------- Korrektur padding mainDiv ----------------------- //

var setDivBalanceDisabled = false;	// wird beim editieren deaktiviert //

function setDivBalance(){		// nur wenn Style aktiv //
if(document.getElementById('checkCSS').offsetHeight > 0) return false;
var emH = document.getElementById('emHeightHlp').offsetHeight;
var xx = document.getElementById('navi').offsetHeight - document.getElementById('main').offsetHeight;
if(xx>0){
if(!setDivBalanceDisabled){
document.getElementById('contFlexFoot').style.paddingTop = Math.round(xx/emH*40000)/10000 + 1 + 'em';
}}}
