// SMALL COMMON JS FUNCTIONS

// used for form input boxes. shows and hides the text inside it before the user edits it.
function input_text( id, text ){
	if ( id.value == '' )
		id.value = text;
	else if ( id.value == text )
		id.value = '';
}
