// javascript document

function writeEmail(tla,dom,nam) {
document.write("<a href='mailto:"+nam+"@"+dom+"."+tla+"'>"+nam+"@"+dom+"."+tla+"</a>");
}


function switchVal(e,o) {
// e is the element  - o is the orginal value
if (document.getElementById(e.name).value==o) document.getElementById(e.name).value="";
}
function checkVal(e,o) {
// e is the element  - o is the orginal value
if (document.getElementById(e.name).value=="") document.getElementById(e.name).value=o;
}

function mail_page(page) {
var w=window.open("/mail_page.php?page="+page,"Share_the_love","top=100,left=100,scrollbars=0,toolbars=0,width=350,height=350,location=0");
w.focus();
}


function order(){
theURL="https://stairnola.org/secure/order.php";
var w=window.open(theURL,"Donation","width=580,height=600,top=100,left=100,toolbar=1,location=1,scrollbars=1");
w.focus();
}