
function getBrowser () {
  var UA = navigator.userAgent;
  var browserType = 0;

  if (UA.match (/khtml/i) != null)
    browserType = 1;
  else if (UA.match (/gecko/i) != null)
    browserType = 2;
  else if (UA.match (/opera/i) != null)
    browserType = 3;
  else if (UA.match (/msie/i) != null)
    browserType = 4;

  return browserType;
} 
function scrollToBottom(){
	 window.scrollByPages(1000); 
}
function getValuesCombo(bool)
{
	if( bool=="1" )
	{
		var val_1 = $('cid_1').value;
		new Ajax.Updater('cdiv_2', 'http://www.darboskelbimai.lt/ajax.php?cid='+val_1, { method: 'get' });	
	}
	else if(  bool=="2"  )
	{
		var val_1 = $('cid_2').value;
		new Ajax.Updater('cdiv_3', 'http://www.darboskelbimai.lt/ajax.php?c1id='+val_1, { method: 'get' });	
	}
}
