function addLoadEvent(func) {    
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			oldonload();
			func();
		}
	}
}

function showKDM_Frame() {
	document.getElementById("kdm_frame").style.visibility="visible";
}

function addKDM_Frame(area, cat, size, plane, style, tgtid) {
	if (size == "small") count = 2; else count = 3;
	if (plane == "landscape") {
		width = count*260 + 2;
		height = 112;
	}

	if (plane == "portrait") {
		width = 142;
		height = count*160+2+17;
	}

	var frame = document.createElement("iframe");
	frame.id="kdm_frame";
	frame.src = 'http://kamdomesta.sk/richmedia/'+area+'/'+cat+'/'+size+'#'+plane+'-'+style;
	frame.style.width = width+'px';
	frame.style.height = height+'px';
	frame.style.border = '0px';
	frame.style.padding = '0px';
	frame.style.margin = '0px';
	frame.style.visibility = 'hidden';
	frame.style.overflow = 'hidden';
	frame.scrolling = 'no';
	frame.frameBorder = 0;

	var target = document.getElementById(tgtid);
	if (target != null) {
		target.appendChild(frame);
		addLoadEvent(showKDM_Frame);
	}
}