//#######Lynden Christian School
//#######External javascript functions

var address = "lyncs";

function popupWindow(copy){
window.open(copy,"","width=500,height=430,screenX=100,screenY=50, left=100,top=50,scrollbars=yes");
}

function siteWindow(copy){  //enables opener property
window.open(copy,"","width=400,height=430,screenX=500,screenY=50, left=500,top=50,scrollbars=yes");
}

function get_browser(locationOfPage){  //popup to browser
opener.location = locationOfPage;
close();
}

function open_browser(locationOfPage){  //popup stays open to browser
opener.location = locationOfPage;
blur();
}

function closeWindow() { window.close() }
function goBack() { history.back() }

function newWindow(copy){
window.open(copy,"","width=500,height=430,screenX=150,screenY=80,left=150,top=80,scrollbars=no");	
}	

function sizeWindow(copy,wide,tall){
window.open(copy,"","width=" + wide + ",height=" + tall + ",screenX=40,screenY=20,left=40,top=20,scrollbars=no");
}

function bioWindow(copy,name){
window.open(copy,name,"width=650,height=600,screenX=100,screenY=20,left=100,top=20,scrollbars=yes");
}

function bioWindow2(copy){   //same as above, let's popup open new popup
window.open(copy,name,"width=650,height=600,screenX=120,screenY=30,left=120,top=30,scrollbars=yes");
}

function routeWindow(copy){
window.open(copy,"","width=400,height=300,screenX=200,screenY=100, left=200,top=100,scrollbars=yes");
}

function contact(id){
location.href="mailto:"+id+"@"+address+".org";
}