// Basic Site Functions


/* clears form fields on click */
function clearText(field){
	if (field.defaultValue == field.value) field.value = '';
 		else if (field.value == '') field.value = field.defaultValue;
	}

function openWin(newUrl, height, width)
{
    if ( height === undefined ) { height = '400'; }
	    if ( width === undefined ) { width = '725'; }
		    var newWin = window.open(newUrl,"JustGiveFAQ","scrollbars=yes,resizable=yes,HEIGHT=" + height + ",WIDTH=" + width + ",status=no,toolbar=yes,directories=no,menubar=no,location=no");
}

