function openSub(filename, name, scroll, width, height, left, top)
	{
		windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=yes,copyhistory=yes,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "'");
	
		newWindow = window.open(filename, name, windowops);
		newWindow.focus();
		return;
	}
	
	
	
	function newIkkuna(postType)
	{
		if(postType)
			openSub('hyvaolo.html', "info", 'yes', 580, 500, 50, 50);
		else
			openSub('hyvaolo.html', "info", 'yes', 580, 500, 50, 50);
	}
