<!--
	function ShowPicture(sWhat,nWidth,nHeight){
		if (typeof ShowPic != 'undefined') ShowPic.close()
		
		sURL = "show.htm#" + sWhat
		nWidth = nWidth + 20
		nHeight = nHeight + 20
		ShowPic = window.open(sURL,"ShowPicture","width=" + nWidth + ",height=" + nHeight)
		ShowPic.focus()
	}
	
	function ShowDetail(sWhat){
		targetElement = document.getElementById(sWhat);
		if (targetElement.style.display=="none")
			targetElement.style.display=""
		else
			targetElement.style.display="none"
	}
	
	function CloseShowPic(){
		if (typeof ShowPic != 'undefined')
			ShowPic.close();
		return true;
	}
	
	function ShowTopFrame(){
		if (location.host == "www.kasik-sails.cz"){
			path = window.location.pathname;
			path = path.substring(path.lastIndexOf("/")+1,path.length)
			//alert(location.host);
			
			path = "default.aspx?page=" + path
			if (this == window.top)
				window.location.href = path;
			return true;
		}
	}
// -->