//--------------------------------------
bw = new checkBrowser();
//--------------------------------------
function checkBrowser(){
  this.ver=navigator.appVersion
  this.dom=document.getElementById?1:0
  this.mac=(this.ver.indexOf("Mac")>-1)?1:0;
  this.ie6=((this.ver.indexOf("MSIE 6")>-1) && this.dom)?1:0;
  this.opera=(navigator.userAgent.indexOf('Opera')>=0)?1:0
  this.ie5=this.ie6 || ((this.ver.indexOf("MSIE 5")>-1) && this.dom)?1:0;
	// || (navigator.userAgent.indexOf('Opera')>=0)
  this.ie4=(document.all && !this.dom)?1:0;
  this.ns5=(this.dom && (parseInt(this.ver) >= 5) && (!this.opera)) ?1:0;
  this.ns4=(!document.all && !this.dom)?1:0;
  this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5 || this.ie6);
  return this;
	//Opera - это .ns5 -> (this.dom && (parseInt(this.ver) >= 5)
}
//--------------------------------------
function showpict(isrc, w, h, talt) {
	var appear,pic;
appear='top=' + (screen.height/2-90) + ',left=' + (screen.width/2-90) + ',width=' + w + ',height=' + h + ',directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0';
pic=window.open('', 'pictw', appear);
pic.document.open();
	pic.document.write("<HTML><HEAD><SCRIPT>window.focus();</SCRIPT></HEAD><BODY LEFTMARGIN=\"0\" TOPMARGIN=\"0\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"0\"><table border=0 cellpadding=0 cellspacing=0><tr align=center valign=middle><td><IMG SRC=\"" + isrc + "\" WIDTH=\"" + w + "\" HEIGHT=\"" + h + "\" ALT=\"" + talt + "\"></td></tr></table></BODY></HTML>");
pic.document.close();
}
//--------------------------------------
var w1;
function wopn (sUrl) {
w1=window.open(sUrl, 'w1', 'top=' + 50 + ',left=' + 180 + ',width=' + 499 + ',height=' + 375 + ',directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0');
w1.focus();
return false;
}//end of wopn
//--------------------------------------
function popupW(isrc, ihref, ialt, iw, ih, ww, wh) {
	var appear,pic,adv;
appear='top=' + (0) + ',left=' + (0) + ',width=' + ww + ',height=' + wh + ',directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0';
	//screen.height/2-90
	//screen.height/2-90
adv=window.open('', 'wadv', appear);
if (!bw.opera) {adv.document.open();}
adv.document.write("<HTML><HEAD lang=ru><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\"><SCRIPT>window.focus();</SCRIPT></HEAD><BODY bgcolor=\"white\" LEFTMARGIN=\"0\" bottommargin=0 TOPMARGIN=\"0\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"0\"><table border=0 cellpadding=0 cellspacing=0 align=center><tr align=center valign=middle WIDTH=\"" + (ww) + "\" HEIGHT=\"" + (wh) + "\"><td><a href=\"" + "#" + "\" onclick=\"window.open('" + ihref + "');self.close();//if (navigator.appName!='Netscape') self.close();\"><IMG border=0 SRC=\"" + isrc + "\" WIDTH=\"" + iw + "\" HEIGHT=\"" + ih + "\" ALT=\"" + ialt + "\" vspace=0 hspace=0></td></tr></table></BODY></HTML>");
adv.document.close();
}
//--------------------------------------

