//removes the text when cursor gets focus and
function hideShowTextboxValue(id, defaultText, replace){

	keyPhraseBox = document.getElementById(id);

	if(keyPhraseBox.value == defaultText && replace == 0){
		keyPhraseBox.value = '';
	} else if(keyPhraseBox.value == '' && replace == 1){
		keyPhraseBox.value = defaultText;
	}
}