function show_big_pic(id){
	
	id_camp_err='incarcare_poza';
	
	xmlHttp=GetXmlHttpObject();
	xmlHttp.open('post','detalii_anunt_img_big.php');
	xmlHttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	xmlHttp.onreadystatechange=ajax_show_err_logare;
	xmlHttp.send('id=' + id + '&action=show');
	}
function ajax_show_err_logare() 
{
	
	if (xmlHttp.readyState==1)
	{ 
		document.getElementById(id_camp_err).innerHTML='<div style="width:100%; text-align:center; padding-top:40px; height:50px; border:none;"><img style="border:none;" src="http://www.anunturi-free.ro/include/loadingAnimation.gif"></div>' 
	
	} 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{ 
		document.getElementById(id_camp_err).innerHTML=xmlHttp.responseText 
	
	} 
} 

function GetXmlHttpObject()
	{ 
	var objXMLHttp=null
	if (window.XMLHttpRequest) //penru mozilla
		{
		objXMLHttp=new XMLHttpRequest()
		}
	else if (window.ActiveXObject) //pentru internet explorer
		{
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
		}
	return objXMLHttp
	} 