function scheduleHealthFair() 
{  // SET MESSAGE VALUES  
	var to = "info@corporatehealthinc.com";
	var subject = "Schedule Health Fair or Flu Shots";  
	var body = "<html><body>Please answer the following questions and send:<p> HR contact name: <br>Phone number: <br>Fax number: <br>Company name: <br>Address: <br>City: <br>Number of employees: <br>Additional comments (optional): </body></html>"
	// BUILD MAIL MESSAGE COMPONENTS   
	var doc = "mailto:"+to+"?subject="+escape(subject)+"&body="+escape(body);   
	// POP UP EMAIL MESSAGE WINDOW  
	window.location = doc;
}
function scheduleFluShots() 
{  // SET MESSAGE VALUES  
	var to = "info@corporatehealthinc.com";
	var subject = "Schedule Flu Shots";  
	var body = "<html><body>Please answer the following questions and send:<p> HR contact name: <br>Phone number: <br>Fax number: <br>Company name: <br>Address: <br>City: <br>Number of employees: <br>Additional comments (optional): </body></html>"
	// BUILD MAIL MESSAGE COMPONENTS   
	var doc = "mailto:"+to+"?subject="+escape(subject)+"&body="+escape(body);   
	// POP UP EMAIL MESSAGE WINDOW  
	window.location = doc;
}
function show_it(url,size)
{
	window.open(url,"",size);
}
function pick(obj)
{
	obj.style.color="#efefef"; <!-- this overrides the "buttonText" color -->
	obj.style.backgroundColor="#993399"; <!-- this overrides the background color of "th" -->
	return true;
}
function unpick(obj)
{
	obj.style.color="#000000"; <!-- this has to match color of "buttonText" -->
	obj.style.backgroundColor="#009999"; <!-- this has to match background color of "th" -->
	return true;
}
function pickHeader(obj)
{
	obj.style.color="#009999"; <!-- this overrides the "MediumGrayHeader" color -->
	obj.style.backgroundColor="#efefef"; <!-- this overrides the background color of "th" -->
	return true;
}
function unpickHeader(obj)
{
	obj.style.color="gray"; <!-- was gray -->
	obj.style.backgroundColor="#efefef"; <!-- this has to match background color of "th" -->
	return true;
}
function pickLink(obj)
{
	obj.style.color="#009999"; <!-- was #009999 -->
	obj.style.backgroundColor="#efefef"; <!-- this overrides the background color of "th" -->
	return true;
}
function unpickLink(obj)
{
	obj.style.color="#800080"; <!-- was #444444 -->
	obj.style.backgroundColor="#efefef"; <!-- this has to match background color of "th" -->
	return true;
}
function pickBlue(obj)
{
	obj.style.color="#efefef"; <!-- this overrides the "buttonText" color -->
	obj.style.backgroundColor="#993399"; <!-- this overrides the background color of "th" -->
	return true;
}
function unpickBlue(obj)
{
	obj.style.color="#000000"; <!-- this has to match color of "buttonText" -->
	obj.style.backgroundColor="#009999"; <!-- this has to match background color of "th" -->
	return true;
}
function pickCorporate(obj)
{
	obj.style.color="#efefef"; <!-- this overrides the "buttonText" color -->
	return true;
}
function unpickCorporate(obj)
{
	obj.style.color="#000000"; <!-- this has to match color of "buttonText" -->
	return true;
}
function pickHealth(obj)
{
	obj.style.color="#008080"; <!-- this overrides the "buttonText" color -->
	return true;
}
function unpickHealth(obj)
{
	obj.style.color="#800080"; <!-- this has to match color of "buttonText" -->
	return true;
}