function image_open(href,target,width,height) {
	var w1=window.open('',target,'width='+(width+4)+',height='+(height+4)+',scrolling=no,resizable=yes, location=0, menubar=0,directories=0,status=0, top=100');
	w1.focus();
    var d1=w1.document;	d1.open();
	d1.write('<html><body style="margin: 0px;"><table border=0 width="100%" height="100%" cellpadding=0 cellspacing=0><tr><td align="center" style="background: no-repeat url(http://www.termocom.ru/images/loading.gif) center;"><img src="'+href+'" border="0"></td></tr></table></body></html>');
    d1.close();     return false;
}


function CheckSearchForm()
{
   if ( document.SearchForm.search_key.value.length < 2 )
  {
    alert("Введите ключевое слово!");
    document.SearchForm.search_key.focus();
    return false;
  }
}

