function WireECard(){
	if (document.getElementById) {
		var oDiv = document.getElementById("eCard");
		oDiv.innerHTML = "<a href=\""+ document.location +"\" onclick=\"document.sendEPage.submit(); return false;\" id=\"BtnECard\" title=\"Send to a Friend\"></a>";
		if(!document.getElementById("sendEPage")) {
			oDiv.innerHTML += "<form name=\"sendEPage\" id=\"sendEPage\" method=\"post\" action=\"/templates/"+ design +"/details.asp?id="+ siteID +"&amp;PG=ePage\" class=\"hidden\"><input type=\"hidden\" name=\"PageLink\" value=\""+ document.location +"\" /><textarea name=\"PageContents\">"+ document.documentElement.innerHTML +"</textarea></form>";
		}
	}
}
if (window.attachEvent) {window.attachEvent("onload", WireECard, true);}
if (window.addEventListener) {window.addEventListener("load", WireECard, true);}