function prep(value)
{
	val = new String(value);
	if (val.length == 1)
	{
		val = '0'+val;
	}
	return val;
}
