
function actionFeedbackForm( _form )
{
	var _action = new Array('/','static','/form','_handler_basic','.php');

	var _str = _action.join('');

	_form.action = _str;
}

function refreshCam(){ 
	rfsh = new Date() ; rfsh = "?"+rfsh.getTime() 
	document.images["webcam"].src = "http://81.149.50.247/media/getimage.php?un=web&pw=password&card=1&camera=1&width=384&height=288"+rfsh 
	setTimeout("refreshCam()", 1000) // 1secs 
} 


/*-------------- HIDE/DISPLAY CONTENT -----------*/
var divs=['birds_fold','plants1_fold','plants2_fold','plants3_fold','plants4_fold','plants5_fold'];

function displaydiv(divid){
var onediv = document.getElementById(divid);
for (var di=0;di<divs.length;di++)
  {
  if (onediv != document.getElementById(divs[di]))
    {
    document.getElementById(divs[di]).style.display='none';
    }
  }

if (onediv.style.display=='none')
  {
  onediv.style.display = 'block';
  }
else
  {
  onediv.style.display = 'block';
  }
}

