function download_request(){	arr = ['firstname', 'lastname', 'organization', 'position', 'email', 'masdk','lisap'];	var x;	var str = "";	for(x=0; x<7; x++){		if(x<5){			document.getElementById('downf_f_id_' + arr[x]).value = encodeU1251(document.getElementById('downf_r_id_' + arr[x]).value);		}else{			if(document.getElementById('downf_r_id_' + arr[x]).checked){				document.getElementById('downf_f_id_' + arr[x]).value = "1";			}else{				document.getElementById('downf_f_id_' + arr[x]).value = "0";			}		}	}	document.getElementById('downf_f_id').submit();}
