var opreklame;
var frameWidth;

function showad() {
	opreklame = document.getElementById('opreklame');
	adheight = 100;
	adtimeout = setTimeout(startad, 10000);
	}
function startad() {
	adposition = 0;
	opreklame.style.display='inline';
	adtimeout = setInterval(positionad, 25);
	}
function positionad() {
	adposition += 5;
	opreklame.style.marginBottom = '-' + (((adheight - adposition) / adheight) * adheight) + 'px';
	if (adposition >= adheight) {
		clearTimeout(adtimeout);
		adtimeout = setTimeout(finishad, 1);
		}
	}
function finishad() {
	opreklame.style.marginBottom = '0';
//	opreklame.style.top = 'expression(document.body.scrollTop+document.body.clientHeight-this.clientHeight)';

//	document.write('<style type="text\/css">');
//	document.write('#opreklame {');
//	document.write('_top:expression(document.body.scrollTop+document.body.clientHeight-this.clientHeight);');
//	document.write('}');
//	document.write('<\/style>');
	}

document.write('<style type="text\/css">');
document.write('body {');
document.write('width: auto;');
document.write('height: 100%;');
document.write('margin: 0;');
document.write('}');
document.write('#opreklame {');
document.write('width: 100%;');
document.write('height: 90px;');
document.write('overflow: hidden;');
document.write('padding: 0;');
document.write('margin: 0;');
document.write('margin-bottom: -90px;');
//document.write('left: 0;');
document.write('top: auto;');
//document.write('bottom: 0;');
document.write('right: 0;');

if (typeof document.body.style.maxHeight != "undefined") {document.write('position:fixed;');}
else {document.write('position:absolute;');}

document.write('position:fixed;');
document.write('_position:absolute;');
document.write('bottom:0;');
document.write('_top:expression(document.body.scrollTop+document.body.clientHeight-this.clientHeight);');

document.write('display:none;');
document.write('}');
document.write('<\/style>');

document.write('<div id="opreklame">');
document.write('<iframe marginwidth="0" style="width:100%" height="182px" marginheight="0" hspace="0" vspace="0" allowTransparency="true" frameborder="0" scrolling="no" src="http://www.tjen-mere.dk/includes/popup_banner.php"></iframe>');
document.write('<\/div>');

showad();





function closeIt(){
	parent.document.getElementById('opreklame').style.display='none';
}



