function sondaj(site){
	
	//de aici il opresc sa nu mai mearga pe niciun site
	if (site=="Proiecte.biz") return null;
	// Define various event handlers for Dialog
	function setCookieSondaj(){
		var msecs = 1;
		var date = new Date();
		date.setTime(date.getTime()+(msecs*1000*60*60*24*5));
		var expires = "; expires="+date.toGMTString();
		document.cookie = "sondaj=on"+expires+"; path=/";
	}
	var handleYes = function() {
		window.open("http://www.imobiliare.net/sondaj/?site="+site,"_blank");
		setCookieSondaj();
		this.hide();
	};
	var handleNo = function() {
		setCookieSondaj();	
		this.hide();
	};
	
	// Instantiate the Dialog
	YAHOO.example.container.simpledialog1 = new YAHOO.widget.SimpleDialog("dialog1", 
																			 { width: "350px",
																			   fixedcenter: true,
																			   visible: false,
																			   draggable: true,
																			   close: false, 
																			   zIndex:1700,
																			   text:"<strong>"+site+"</strong> va recomanda :<br/><br/>Ansamblu rezidential nou, in zona verde Baneasa<br/>&nbsp;&nbsp;&nbsp;&nbsp;- <strong>Garsoniera (49mp)</strong>  - 60.610euro,<br/>&nbsp;&nbsp;&nbsp;&nbsp;- <strong>Apartament 2 camere (53mp)</strong>  - 69.663euro,<br/>&nbsp;&nbsp;&nbsp;&nbsp;- <strong>Apartament 3 camere (77mp)</strong>  - 96.992euro,<br/>&nbsp;&nbsp;&nbsp;&nbsp;- TVA si loc de parcare incluse.",
																			   icon: YAHOO.widget.SimpleDialog.ICON_TIP,
																			   constraintoviewport: true,
																			   buttons: [ { text:"Afla detalii", handler:handleYes, isDefault:true },
																						  { text:"Nu sunt interesat",  handler:handleNo } ]
																			 } );
	
	
	YAHOO.example.container.simpledialog1.setHeader("Recomandare "+site);
	// Render the Dialog
	YAHOO.example.container.simpledialog1.render(document.body);
	YAHOO.example.container.simpledialog1.show();
}
