function cc_watermark(inputId,text){
	var inputBox = document.getElementById(inputId);
	if (inputBox.value.length > 0){
		if (inputBox.value == text)
			inputBox.value = '';
	}
	else
		inputBox.value = text;
}
