function reklamBox(cim, box, DPX, DPY){
	/* css-ben használható ID és CLASS értékek:
	/* ID: nincs beállítva. Te döntöd el.
	/* CLASS: .head, .cim, .text
	/*
	/*	PÉLDA:
	/*	<div id="reklam">
	/*		<div class="head">
	/*			<div class="cim">Reklám</div>
	/*			<div class="gomb"><a rel="bezaras">X</a></div>
	/*			<div class="clear">&nbsp;</div>
	/*		</div>
	/*		<div class="text">IDE kerül a megadott szöveg</div>
	/*	</div>
	/**/
	
	var text = jQuery(box).html();
	
	jQuery(box).html("<div class='head'><div class='cim'></div><div class='gomb'><a rel='bezaras'>X</a></div><div class='clear'>&nbsp;</div></div><div class='text'></div>");
	jQuery(box + " .head .cim").html(cim);
	jQuery(box + " .text").html(text);
	
	var H = jQuery(window).height();
	var W = jQuery(window).width();
	
	var px = H*DPX-jQuery(box).height()*DPX;
	var py = W*DPY-jQuery(box).width()*DPY;
	
	if(px<0){px=0;}
	if(py<0){py=0;}
	
	//próba
	//jQuery(box + " .head .cim").html("W:"+W+" H:"+H+" px:"+px+" py:"+py);
	
	//css kötelező beállítások
	jQuery(".clear").css({"clear":"both", "font-size":"0px"});
	jQuery(box).css({"position":"absolute", "z-index":"9999"});
	jQuery(box + " .head .gomb a").css({"cursor":"pointer"});	
	jQuery(box).css({"cursor":"default"});
	
	//mozgatás pozicióba
	jQuery(box).animate({
		top:px+"px",
		left:py+"px"
	}, 1500 );
	
	//bezárás
	jQuery(box + " .head").click(function () { 
		jQuery(box).slideUp();
	});
	jQuery(box + " .text").click(function () { 
		window.location.href = "main.php?item=6";
	});
}
