function resizeIframe(frameid, bpHeight, bpLayout) {
	// Azert igy csinaljuk a magassag allitast, hogy ha valtozik valamiert a layout, akkor mit tudjuk modositani a magassagot
	bpHeights = [];
	bpHeights['HORIZONTAL'] = 250;
	bpHeights['HORIZONTAL_01'] = 399;
	bpHeights['HORIZONTAL_02'] = 90;
	bpHeights['HORIZONTAL_03'] = 232;
	bpHeights['HORIZONTAL_04'] = 290;
	bpHeights['HORIZONTAL_05'] = 200;
	bpHeights['ORIGO'] = 399;
	bpHeights['ORIGO_SMALL'] = 399;
	
	if (bpLayout) {
		if (bpHeights[bpLayout])
			bpHeight = bpHeights[bpLayout];
	}
	
	var f=document.getElementById(frameid);
	f.style.height=bpHeight + "px";
}

document.write('<iframe id="bookline-partner-container-iframe" src="' + bpUrl + '" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%;" scrolling="no"></iframe>');

// new version
if (typeof(bpLayout) != "undefined")
	resizeIframe('bookline-partner-container-iframe', 0, bpLayout);
// old version
else                                                                                                                                                                                             
	resizeIframe('bookline-partner-container-iframe', bpHeight); 
