﻿/*!
	Copyright (c) 2009 Kinderboekentips
	generic.js: several all purpose functions
*/

function clearField(strID)
{
	if ( document.getElementById(strID).value == 'kies een naam' )
	{
		document.getElementById(strID).value = '';
	}
}

function getRandom()
{
	return Math.random() * 99999;
}

function toggleDiv(strID)
{
	// show or hide panel
	if ($("#" + strID).is(":visible"))
	{
		$("#" + strID).slideUp("normal");
	}
	else
	{
		$("#" + strID).slideDown("normal");
	}
}

