function GoogleSearch()
{
	var searchForm = document.createElement("FORM");
	searchForm.style.display = "none";
	searchForm.id = "cse-search-box";
	searchForm.action = "/portal/vyhledavani";
	
	var inpCx = document.createElement("INPUT");
	inpCx.name = "cx";
	inpCx.type = "hidden";
	inpCx.value = "005185634881929426321:hyjdqndrclm";

	var inpCof = document.createElement("INPUT");
	inpCof.name = "cof";
	inpCof.type = "hidden";
	inpCof.value = "FORID:11";
	
	var inpQ = document.createElement("INPUT");
	inpQ.name = "q";
	inpQ.type = "text";
	inpQ.value = document.getElementById("searchinput").value;

	searchForm.appendChild(inpCx);
	searchForm.appendChild(inpCof);
	searchForm.appendChild(inpQ);
	
	document.body.appendChild(searchForm);
	searchForm.submit();
}