function validtip()
{
	if (document.getElementById('tip_text').value != "")
	{
		window.open('./tips_thx.html', '_blank', 'width=300 height=100');
		return true;
	}
	else
	{
		alert("Don't forget: you must enter some text...");
		return false;
	}
}

