//Copyright Nsze.hu
//Made by Robert Kallos
//-	berakja az emileket

function move(fbox, txt_area) {
var arrFbox = new Array();
var arrLookup = new Array();
var i;
var emailcimek="";

var fLength = 0;
for(i = 0; i < fbox.options.length; i++) {
	arrLookup[fbox.options[i].text] = fbox.options[i].value;
	if (fbox.options[i].selected && fbox.options[i].value != "") {
		if(fbox.options[i].text==fbox.options[i].value){
			emailcimek= emailcimek + '<' + fbox.options[i].value + '>;\n';
		}
		else{
			emailcimek= emailcimek +  fbox.options[i].text + '<' + fbox.options[i].value + '>;\n';
		}
		//alert( 'Fbox Value- ' + fbox.options[i].value + 'Fbox text- ' + fbox.options[i].text );
	}
	else {
		arrFbox[fLength] = fbox.options[i].text;
		fLength++;
   }
}
//arrFbox.sort();
fbox.length = 0;
var c;
	for(c = 0; c < arrFbox.length; c++) {
		var no = new Option();
		no.value = arrLookup[arrFbox[c]];
		no.text = arrFbox[c];
		fbox[c] = no;
	}
txt_area.value = txt_area.value + emailcimek;
//alert(txt_area.value);
}

