function showSearchFriends(){

	var gg_objCCard;
	var gg_lngTop;
	
	if ($('#searchfriends').css('display')){
		hideContactCard();
		return;
	}
		
	gg_lngTop = parseInt(($('#opensearchbox').offset().top)) + 20;
	
	$('#header').css({'z-index':'100'})
		
	gg_objCCard = $('<div id="searchfriends">');
	
	gg_objCCard.html('<h4 style="margin-left:10px;color:#BC916E;font-family:georgia,\'Bookman Old Style\',\'Times New Roman\',Times,serif;font-size:14px;">Ricerca per regione/provincia</h4><form ><fieldset id="" style="width:300px;margin:0;display:block;padding:0;float:none;"><label for="regione" id="lblregione" style="width:80px;">regione: </label><select onchange="getProvince()" id="regione" name="regione" style="margin: 8px 4px 4px 0px;">' + gg_strRegioni + '</select><div class="clearboth"></div><label id="lblprovincia" for="provincia"style="width:80px;">provincia:</label><select id="provincia" name="provincia" style="margin: 8px 4px 20px 0px;"><option selected="selected" label="Tutte" value="0">Tutte</option></select><div class="clearboth"></div><input id="invia" type="button" class="fields" value="Invia" onclick="submitSearchForm()" style="padding-top:0px;height:24px;color:#BC916E;width:100px;float:left;"/><input type="button" onclick="hideContactCard()" class="fields" value="Chiudi" style="padding-top:0px;height:24px;color:#BC916E;width:100px;float:right;"/></fieldset></form>');


	gg_objCCard.css({
		display:'none',
		width:'300px',	
		padding: '4px',
		background: '#fefef1',
		border: '1px solid #ddd',
		position:'absolute',
		top: gg_lngTop + 'px',
		right:'8px',
		margin:'0px'
	});
	
	gg_objCCard.appendTo($('#header'));
	
	$('#searchfriends').slideDown(200, function () { $("#searchfriends").dropShadow({left: 4, top: 4}); });				

}

function hideContactCard(){
	$("#searchfriends").removeShadow();
	$('#searchfriends').empty().remove();
}

function getProvince(){

	$('#provincia').attr("disabled", true); 
	$('#invia').attr("disabled", true); 


		$.ajax({
	   	type: "POST",
	   	url: '/get_province.asp',
	   	data: "dta1="+$('#regione').val(),
	   	dataType: "text",
	   	async:false,
	   	success: function(data){

	   		$('#provincia').html(data);
	   	},
	   	error: function(XMLHttpRequest, textStatus, errorThrown){
	     	alert('Errore imprevisto. Si prega di riprovare pił tardi.');
	   	}
	 	});				
	 	

	$('#provincia').removeAttr("disabled"); 
	$('#invia').removeAttr("disabled"); 
}

function submitSearchForm(){

	
	
	$('#elem_regione').val($('#regione').val()); 
	$('#elem_provincia').val($('#provincia').val()); 
	$('#elem_pagina').val(1); 
	
	$('#elem_search').submit(); 
}


