var perksInstructions = "<b>Pappy's Perks Instructions</b><br><ol><li>You can print out your Perks card by <a href='#' style='color:black' onClick='popupPerks(); return false;'>CLICKING HERE</a>.<li>Present the Pappy's Perks card you printed out at the local business to receive your Pappy's Perk.</li><li>You can view the various Perks available by category by using the select list under 'Perks Navigation' on the right hand side of the page.</li><li>You can print out a new copy of your card whenever you want to use it.  Or, just keep a copy in your purse or wallet.</li></ol>";

function addRemoveText(el)
{
	if(el.style.visibility == "visible")
		el.innerHTML = perksInstructions;
	else
		el.innerHTML = "";
}