var f = document.getElementById('comment-box');
var textinput = "GOT ANY.....\n\nSuggestions?\nQuestions?\nComments?\nComplaints?\n\nIF SO...Type them in this box and hit the submit button below.";

if (f && f.comments)
{
	var q = f.comments;

	var b = function() {
		if (q.value == '') {
			//q.style.background = '#FFFFFF url(http:\x2F\x2Fwww.google.com\x2Fcoop\x2Fintl\x2Fen\x2Fimages\x2Fgoogle_custom_search_watermark.gif) left no-repeat';
			q.value = textinput;
		}
	};

	var f = function() {
		//q.style.background = '#ffffff';
		if (q.value == textinput)
		{
			q.value = '';
		}
	};
	q.onfocus = f;
	q.onblur = b;

	b();
}
