var WinOpen;

function getBrowserInfo() {
		 var t,v = undefined;
		 if (window.opera) t = 'Opera';
		 else if (document.all) {
		  t = 'IE';
		  var nv = navigator.appVersion;
		  var s = nv.indexOf('MSIE')+5;
		  v = nv.substring(s,s+1);
		 }
		 else if (navigator.appName) t = 'Netscape';
		 return {type:t,version:v};
}
 
function bookmark(a){
		 var url = window.document.location;
		 var title = window.document.title;
		 var b = getBrowserInfo();
		 if (b.type == 'IE' && 7 > b.version && b.version >= 4) window.external.AddFavorite(url,title);
		 else if (b.type == 'Opera') {
		  a.href = url;
		  a.rel = "sidebar";
		  a.title = url+','+title;
		  return true;
		 }
		 else if (b.type == "Netscape") window.sidebar.addPanel(title,url,"");
		 else alert("Нажмите CTRL-D, чтобы добавить страницу в закладки.");
		 return false;
}

function my_go (target){
	if(target!=undefined && target!="" && target!=0){
		location.href=target;
	}
}

function hideIt(id){
	if(document.getElementById(id).style.display=="none"){

		document.getElementById(id).style.display="block";

	}else{
		document.getElementById(id).style.display="none";
	}
}

function show_hide(id,sid){

		document.getElementById(id).style.display="block";
		document.getElementById(sid).style.display="none";

}

function show_img(title, img_src, img_width, img_height) {
 	height = parseInt(img_height) + 30;
 	width = parseInt(img_width) + 30;

	p_top=(screen.height-img_height)/2-30;
	p_left=(screen.width-img_width)/2-30;

    if(WinOpen != null){
     	  WinOpen.close();
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
    }else{
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
}
    if(WinOpen != null){
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
          WinOpen.document.write("<html><head><title>"+title+"</title>");
          WinOpen.document.write("<SCRIPT language=javascript>function cl() { close(); }</SCRIPT></head>");
          WinOpen.document.write("<body style='padding:0; margin:0;' background='img/borders_bg.gif'><table width='100%' height='100%'><tr><td align='center' style='vertical-align:middle;'><img src="+img_src+" style='cursor:pointer;' alt=\"Закрыть\" onClick=\"cl()\"; style='BORDER-RIGHT: white 4px solid; BORDER-TOP: white 4px solid; BORDER-LEFT: white 4px solid; BORDER-BOTTOM: white 4px solid'></td></tr></table></body></html>");
    }

return WinOpen;

}