function mutat(gomb,id,box) {
	$(box).show();
	if ($(box+'_add_id')) 
	$(box+'_add_id').value=id;
	offset=Position.cumulativeOffset(gomb);
	$(box).setStyle({
		left: offset[0]+'px',
		top: offset[1]+'px'
	})
}

function mutat2(gomb,id,box) {
	mutat(gomb,id,box);
	$(box).innerHTML='';
	new Ajax.Updater(box,'pic_elutasit_duma.php',{parameters: { add_id: id },insertion: Insertion.Bottom});
	
}

function bezar(box) {
	$(box).hide();
}

function reszletez(gomb) {
	if (gomb.checked==true && gomb.value==1) {
		$('box2').show();
		h=$('box2').getHeight()+150;
		$('box1').setStyle({
		height: h+'px'
	});
	} else {
		$('box2').hide();
		$('box1').setStyle({
		height: '150px'
	});
	}
}

function elkuld(add_form,box) {
	$(add_form).request({
  onComplete: function(transport){ 
  	//$('ered').innerHTML=transport.responseText;
	$(add_form).reset(); 
	bezar(box);
	$(box).innerHTML='';
	new Ajax.Updater(box,'gallery_form.php',{insertion: Insertion.Bottom});
	$(box).setStyle({
		width: '250px',
		height: '150px'
	})
	}
	});
	
}