function isEmail(str)
{
	var supported = 0;
	if (window.RegExp)
	{
		var tempStr = "a";
		var tempReg = new RegExp(tempStr);
		if (tempReg.test(tempStr))
			supported = 1;
  }

  if (!supported) 
    return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);

  var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
  var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");

  return (!r1.test(str) && r2.test(str));
}
function isWeb(str)
{
	return ((str.indexOf('.com')>0)||(str.indexOf('.net')>0) ||(str.indexOf('.ua')>0)||(str.indexOf('.biz')>0)||(str.indexOf('.info')>0)||(str.indexOf('www.')>0) )
}
function suche(){
if((ff.club.checked)&&(ff.rep.checked)){ad=''};
	  else if(ff.club.checked){ad='&vid=club'}; 
	    else if(ff.rep.checked){ad='&vid=rep'}; 
	  
	  if(ff.subrubr.options[ff.subrubr.selectedIndex].value==0) { alert('Выберите рубрику!');} else document.location.href='rubrik_common.php?ort='+ff.ort.options[ff.ort.selectedIndex].value+'&rubrid='+ff.subrubr.options[ff.subrubr.selectedIndex].value+ad;
	  
}