function showAnsw(qid){

	if(document.getElementById(qid).style.display == '')

		document.getElementById(qid).style.display = 'block';

	else

		document.getElementById(qid).style.display = '';
}

function ruShure(msg,lnk){

if (confirm(msg)) { window.location.href = lnk }

}