	function confirmSubmit(uzenet) 
	{
	var agree=confirm(uzenet);
	if (agree)
		return true ;
	else
		return false ;
	}
	function popitup(url,height,width) {
		newwindow=window.open(url,'name','scrollbars=1,height='+height+',width='+width);
		if (window.focus) {newwindow.focus()}
		return false;
	}


