<!-- Begin OPTIONS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS


var showphone		= "no"		// SHOW THE PHONE ON THE PAGE
var phoneLR		= "right"	// PHONE LEFT OR RIGHT
var phoneX		= "16"		// PHONE X LOCATION
var phoneY		= "32"		// PHONE Y LOCATION


// START PHONE SCRIPT
   if (showphone == "yes") {

document.write('<div id="date-location" style="'+phoneLR+': '+phoneX+'px; POSITION: absolute; TOP: '+phoneY+'px">');
document.write("<span class=\"date-font\"><nobr>" + " Phone: 949-230-2764 ")
document.write("</nobr><br></span>")
document.write('</div>');
}


// -- END -->
