$(document).ready(function(){
	$("#afisareMesaj").dialog({
		autoOpen: false,
		bgiframe: true,
		modal: true,
		width: 600,
		height: 600,
		buttons: {
			'Inchide': function() {
				$(this).dialog('close');
			},
			'Trimite cerere': function() {
				fpost = {};				
				$('#holderFCO').find('[id^=FCO_][id!="FCO_'+$('#holderFCO').find('[name=Tip_serviciu]').val()+'"]').remove();				
				topost = $('#holderFCO').find('input,select,textarea');
				for(i=0;i<topost.length;i++){
					eval('fpost.'+$(topost[i]).attr('name').replace(/ /g,'_')+'="'+$(topost[i]).val().replace(/\n/g,'<br>')+'"');
				}
				ts = $.json.encode(fpost);
				attachLoading(false);
				$.post('ajax/trimiteCerere.php',fpost,function(data){
					destroyAttachLoading();
					$('#imgCodSecFCO').attr('src','images/security_75x20.jpg?s=FCOr='+Math.random());
					data = data.split('|');
					if( data[0] == "error" )
					{
						alert(data[1]);
					}
					else						
						$("#afisareMesaj").html('<div align="center" style="margin-top:150px"><strong>Felicitari! Cererea a fost trimisa!</strong></div>');
				});
			}
		}
	});
});
function cereOfertaAgentii()
{
	$("#afisareMesaj").html('<div align="center" style="margin-top:150px"><strong>Va rugam asteptati! Se incarca!</strong><br><img src="design/loading.gif" /></div>');
	$("#afisareMesaj").dialog('open');
	$.post('ajax/getFormCerereOferte.php',function(data){
		$("#afisareMesaj").html(data);
	})
}

