function open_win(stranka,name,specs) 
	{
	window.open(stranka,name,specs)
	}

function ShowText(id) {
document.getElementById(id).style.display = 'inline';
}

function HideText(id) {
document.getElementById(id).style.display = 'none';
}

