<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// THESE ARE OPTIONS YOU CAN TURN ON AND OFF


var address_1		= "yes"		// SHOW 1ST ADDRESS
var address_2		= "no"		// SHOW 2ND ADDRESS
var phone_1		= "yes"		// SHOW 1ST PHONE
var phone_2		= "yes"		// SHOW 2ND PHONE
var livechat		= "yes"		// SHOW LIVE CHAT
var email_1 		= "no"     	// SHOW 1ST E-MAIL
var email_2 		= "no"     	// SHOW 2ND E-MAIL


document.write('<TABLE WIDTH="100%" CELLPADDING=0 CELLSPACING=0>');
document.write('   <TR>');
document.write('      <TD WIDTH="50%">');
if (address_1 == "yes") {
// ADDRESS 1

document.write('		<b>Main Office Address:</b> <br>');
document.write('		30313 Calle Halcon<br>');
document.write('		Temecula, CA 92592-5136');
document.write('		<br><br>');
}
if (address_2 == "yes") {
// ADDRESS 2

document.write('		<b>Branch Office Address:</b> <br>');
document.write('		30313 Calle Halcon<br>');
document.write('		Temecula, CA 92592');
document.write('		<br><br>');
}
if (phone_1 == "yes") {
// PHONE 1

document.write('		<b>Phone:</b><br>');
document.write('		(951) 501-2009<br>');
document.write('		(800) 749-2619<br>');
document.write('		<br>');
}
if (phone_2 == "yes") {
// PHONE 2 

document.write('		<b>Fax:</b><br>');
document.write('		(951) 326-3570<br>');
document.write('                (866) 220-8314<br>');
}
document.write('	  </TD>');
document.write('	  <TD WIDTH="50%" VALIGN="top">');
// LIVE CHAT MESSAGE

if (livechat == "yes") {
document.write('		<b>Live Chat:</b> <br>');
document.write('		Our agents are generally standing by Monday - Thursday from 8:00 AM to 5:00 PM PST.');
document.write('		On occasion, we allow them to take a breather.  If the operator is offline, please');
document.write('		leave a message and our operator will get back to you right away.');
}
document.write('	  </TD>');
document.write('   </TR>');
document.write('   <TR>');
document.write('      <TD WIDTH="100%" COLSPAN="2">');

// E-MAIL LINK 1

if (email_1 == "yes") {
document.write('For more information regarding our products or services:<br>');
document.write(' <A HREF="mailto:questions@healingcombinations.com" class="link">questions@healingcombinations.com</a><br><br><br>');
}

// E-MAIL LINK 2

if (email_2 == "yes") {
document.write('For questions or comments regarding our website:<br>');
document.write(' <A HREF="mailto:webmaster@healingcombinations.com" class="link">webmaster@healingcombinations.com</a><br><br><br>');
}

document.write('      </TD>');
document.write('   </TR>');
document.write('</TABLE>');


//  End -->