// mailto links

var lhs = "3mafband";
var rhs = "lapoint.net";

function print_mail_to_link()
{
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
}

function make_mail_to_link()
{
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">" + "<img src=\"http:\/\/3mafband.lapoint.net\/images\/dougmail.gif\"");
document.write("height=\"57\" width=\"134\" border=\"2\"");
document.write("align=\"bottom\">" + "<\/a>");
}

function make_contact_link()
{
document.write("<a href=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "\">" + "contact<\/a>");
}

// Navigation: Pulldown Menu List (Automatic) - Used in Gallery

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

// Navigation: Pulldown Menu (Popup) - Used for Band Links on Main Index Page also on Olongapo page

function listHandler(form) {
// var windowprops = "height=500,width=500,location=no,"
// + "scrollbars=yes,menubars=yes,toolbars=yes,resizable=yes";

var URL = form.site.options[form.site.selectedIndex].value;
// popup = window.open(URL,"MenuPopup",windowprops);
popup = window.open(URL,"MenuPopup");
}



// popup a page - used for awards
var win = null;
function displayAward(page){
var w = 700;
var h = 500;
var winleft = (screen.width-w)/2;
var wintop = (screen.height-h)/2;
if (winleft < 0) winleft = 0;
if (wintop < 0) wintop = 0;
win = window.open (page,'displayAwardWindow','menubar=0,resizable=1,scrollbars=1,status=0,location=0,left=' + winleft + ',top=' + wintop + ',width=' + w + ',height=' + h);
win.window.focus();
}
