var blnSiteSearchFocused = false;
function siteSearchFocus(searchInput) {
	if(blnSiteSearchFocused != true){
		blnSiteSearchFocused = true;
		searchInput.value = '';
	}
}

function fnCambiaImg(urlimg) {
   $('main_image').src=urlimg;
}



function fnCambiaImg(urlimg,imgMap) {
   //alert(imgMap)
   $('main_image').src=urlimg;

   strRequestUrl='/common/sqlreports/ambientazione-map?ajaxview=1';

   //alert(strRequestUrl);

   new Ajax.Request(strRequestUrl, {
		method: 'post',
		parameters: {mapId: imgMap}, 
		onSuccess: function(transport) {		
		  //alert("valore " + transport.responseText)
                  if (transport.responseText!="") {
		          $('imgMapCode_div').update(transport.responseText);                          
                  }

		}
	});
 
}

function isMobile(){
if( navigator.userAgent.match(/Android/i) ||
   navigator.userAgent.match(/webOS/i) ||
   navigator.userAgent.match(/iPhone/i) ||
   navigator.userAgent.match(/iPod/i) ||
   navigator.userAgent.match(/iPad/i)
   ){
  return true;
}else{
  return false;
}
}
