// BLOGER.CZ   pomocne skripty
// 2008 (c) Ashus www.ashus.ashus.net


function trim(str)
	{
	return str.replace(/^\s+|\s+$/g, '');
	}

function vote(menu, ans)
	{
	if (menu == 2)
	    {
		var url = '/hodnoceni.php';
		} else {
		var url = '/ankety.hlasuj.php';
		}

	url += '?p='+window.location.pathname.substr(1);
	if (menu == 1)
		{url += '&m=' + menu;}
	url += '&h=' + ans;
    window.location = url;
	return true;
	}
