function OpenPage(page) {
//	var str = 'scrollbars=yes,resizable=yes,width='+width+',height='+height
	var str = 'scrollbars=yes,resizable=yes,width=250,height=200';
	msgWindow=window.open(page,'NewWindow',str)
	msgWindow.focus()
	return false
} 
function RateGreeting(gid,radioButton) {
	for (x = 0; x < radioButton.length; x++) {
		if (radioButton[x].checked == true) {
			OpenPage('ohodnotit-prani.php?prani='+gid+'&h='+radioButton[x].value);
			return false;
		}
    }
	alert('Zvolte bodové ohodnocení 1 - 5 (5 = nejlepší).');
	return false;
}
function AddBookmark() {
	if (window.external){
		external.AddFavorite(location.href,document.title)
	} else {
		alert("Váš prohlížeč tuto funkci nepodporuje.\nVložte si stránku do oblíbených standardním způsobem (Ctrl-D).");
	}
}