			function getPageTitle(){
				var el = document.getElementById('nicetitle');
				if(el)
					return(el.innerText);
				else	
					return(document.title);
			}

			//-------------------------
			function showPic(src)
			//-------------------------
				{
					var el = document.getElementById("p1");
					if(el)
					{
    					el.style.top = document.body.clientHeight / 2 - 225 + document.body.scrollTop;
    					el.innerHTML = ""
    					el.innerHTML += "<img id='i1' src='" + src + "'>"; 
    					//el.innerHTML += "<br clear='all'><p style='margin:20px;font-size:80%;font-family:Arial'>" + txt + "<br>&copy; ???????, ??? ????? ????????</p>";
    					el.style.display = 'block';
					}
				}
			//-------------------------
			function hidePic()
			//-------------------------
				{
					var el = document.getElementById("p1");
					el.style.display = 'none';
				}

			//------------------------------
			function clickHandler()
			//------------------------------
			{
				if(event.srcElement.className == 'zoom')
					{
					var re = /(\.jpg)|(\.gif)|(\.png)/i;
					var text = "";
					/*if( event.srcElement.parentElement)
					{
						var col = event.srcElement.parentElement.children;
						if(col) 
							for( var i = 0; i < col.length; i ++)
								if(col[i].tagName.toLowerCase() == "p" )
									text = col[i].innerText;
					}	*/			
					showPic(event.srcElement.src.replace(re,"_big.jpg"));
					}
			}	
			// -----------
			function InitPictures()
			//-------------
			
			{
			var coll = document.images;
			for(var i=0; i < coll.length; i++)
				if(coll[i].className == 'zoom') 
					{
						coll[i].style.cursor = "hand";
					}	
			}	
			// -----------			
			function go(str)
			// -----------
			{
				url = "/customers/?id=" + str;
				document.location.href = url;
			}
	
