/**
 * Copyright (c) 1998-2009 InterQuery Software, Inc. All Rights Reserved.
 *
 * This javascript is the confidential and proprietary information of
 * InterQuery Software, Inc..  You shall not use or copy this javascript
 * code without the written permission of InterQuery Software, Inc..
 *
*/

function validateNotes(f) {
	//alert("validateNotes()") ;
	for (i=0; i<f.elements.length; i++) {
		//alert("type="+ f.elements[i].type + ", value=" + f.elements[i].value) ;
		if (f.elements[i].type=="text" && f.elements[i].value.indexOf("Enter your")==0) {
			f.elements[i].value="" ;
		}
	}
	return true;
}

function displayNotes(element) {
	//alert("displayNotes()") ;
	if (element.value.indexOf("Enter your")==0)
		element.value="" ;
}

function restoreNotes(element) {
	//alert("restoreNotes()") ;
	if (element.value=="" || element.value==null)
		element.value="Enter your personal notes here" ;
}

/**
 * Copyright (c) 1998-2009 InterQuery Software, Inc. All Rights Reserved.
 *
 * This javascript is the confidential and proprietary information of
 * InterQuery Software, Inc..  You shall not use or copy this javascript
 * code without the written permission of InterQuery Software, Inc..
 *
*/

