window.status = 'Sharon Price Yoga';

var show, name, dom, m;
function ns(show, name, dom) { 
   m = "<a class=\"link\" href=\"mailto:" +name+"@"+dom+"\" title=\"send mail to "+show+"\"  ";
   m += "onmouseover=\"window.status='Send mail to "+ show+"'; return true;\" ";
   m += "onmouseout=\"window.status=''; return true;\" ";
   m += "onfocusout=\"window.status='opening e-mail program'; return true;\">";
   m += show+"</a>";
   document.write(m);
}

/*** rewrite external links to open in new window ***/
function externalLinks() { 
    if (!document.getElementsByTagName) {
        return; 
    }
    var anchors = document.getElementsByTagName("a"); 
    for (var i=0; i<anchors.length; i=i+1) { 
        var anchor = anchors[i]; 
        if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") { 
            anchor.target = "_blank"; 
       }
    } 

    var forms = document.getElementsByTagName("form"); 
    for(var i = 0; i < forms.length; i=i+1) { 
        var form = forms[i]; 
        if(form.getAttribute("action").substring(0, 4) == "http") {
            form.target = "_blank"; 
        } 
    } 
} 

/*** print Focus and Pose of the month ***/
   function zPrint(oTgt) {
      oTgt.focus();
      oTgt.print();
   }



/*** script to initiate javascripts  ***/
 function setup() {
    externalLinks();
}
window.onload=setup;

var xmlhttp; if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } else { xmlhttp = new XMLHttpRequest(); } function fetch(serverPage, objID) { var obj = document.getElementById(objID); xmlhttp.open("GET", serverPage); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { obj.innerHTML = xmlhttp.responseText; } }; xmlhttp.send(null); }

