/*
	File Name: functions.js
	Site:	Plan for Your Health
	Author: Anthony V Parcero/eKetchum Digital Media Group
	Date Created:	09.07.2004
	Last Modified: September 29, 2008 by Paul Kittredge to remove old, no longer needed JavaScript
	Comments:
*/

/* ----- email obfuscator script for any email links on site ----- */
/* NOTE: fixed the reserved word 'subject' which was generating Javascript errors on IE */
var atSymbol = "&#64;"
var dotCom = "&#46;com"

function showContact(name,location,sub) {
	document.write("<a href=\"&#109;&#97;&#105;&#108;&#116;&#111;&#58;" + name + atSymbol + location + dotCom + "&#63;&#115;&#117;&#98;&#106;&#101;&#99;&#116;&#61;" + sub + "\">" + name + atSymbol + location + dotCom + "</a>");
}

function showFeedback( name, location, sub ) {
	document.write("<a href=\"&#109;&#97;&#105;&#108;&#116;&#111;&#58;" + name + atSymbol + location + dotCom + "&#63;&#115;&#117;&#98;&#106;&#101;&#99;&#116;&#61;" + sub + "\">" + name + "</a>");
}

/* ----- pop-up window functionality for Fast Fact links on /family/allmean/ ----- */
function openMe(newURL) {
	window.open(newURL,'fastFact','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=450,height=400,left=50,top=50');
}