function ConvorbiriInternationale(){
	new Ajax.Request('http://www.pacris.ro/ajax-form.php',
	{
		method: 'post',
		parameters: $('form').serialize(true),
		onLoading: function(){
			$('divConvorbiriInternationale').innerHTML = '<div align="center"><img src="http://www.pacris.ro/images/loading.gif" width="61" height="53" alt="Se verifica ID-ul acum.." title="Se verifica ID-ul acum.."/></div>';
		},
		onSuccess: function(transport){
			var response = transport.responseText || '<div align="center">Server suprasolicitat, mai incearca.</div>';
			$('divConvorbiriInternationale').innerHTML = response;
		},
		onFailure: function(){ 
			$('divConvorbiriInternationale').innerHTML = '<div align="center">A aparut o problema, mai incearca.</div>';
		}
	});
}

function image_reload(id) {
	theImg=document.getElementById(id);
	theImg.src +='?c='+ Math.round(Math.random()*100000);
}