function underlineOn(curLink) {
    var selectedLink = document.getElementById(curLink);
    selectedLink.style.textDecoration="underline";
    selectedLink.style.color="#009966";
}
function underlineOff(curLink) {
    var selectedLink = document.getElementById(curLink);
    selectedLink.style.textDecoration="none";
    selectedLink.style.color="#006633";
}
function underOn(curLink) {
    var selectedLink = document.getElementById(curLink);
    selectedLink.style.textDecoration="underline";
    selectedLink.style.color="#ffff33";
}
function underOff(curLink) {
    var selectedLink = document.getElementById(curLink);
    selectedLink.style.textDecoration="none";
    selectedLink.style.color="#ffff33";
}
function precinct1() {
var message1 = "<p><strong>You live in Precinct #1</strong></p>"
var message2 = "<p><strong>You are to vote at Schoolcraft Township Hall - 50 East VW Avenue, Vicksburg</strong></p>"
newWindow.document.open("text/html", "replace");
newWindow.document.write("<title>Where do I vote?</title>");
newWindow.document.write(message1);
newWindow.document.write(message2);
newWindow.document.write("<input type='button' value='close' onclick='window.close();' />");
}

function popup1() {
newWindow=window.open('','','toolbar=no, scrollbars=no, width=300,height=400');
precinct1();
}
function precinct2() {
var message1 = "<p><strong>You live in Precinct #2</strong></p>"
var message2 = "<p><strong>You are to vote at Ken Krum Recreation Center - 519 East Clay Street, Schoolcraft</strong></p>"
newWindow.document.open("text/html", "replace");
newWindow.document.write("<title>Where do I vote?</title>");
newWindow.document.write(message1);
newWindow.document.write(message2);
newWindow.document.write("<input type='button' value='close' onclick='window.close();' />");
}

function popup2() {
newWindow=window.open('','','toolbar=no, scrollbars=no, width=300,height=400');
precinct2();
}
function precinct3() {
var message1 = "<p><strong>You live in Precinct #3</strong></p>"
var message2 = "<p><strong>You are to vote at Vicksburg United Methodist Church Taylor Room - 217 South Main St, Vicksburg</strong></p>"
newWindow.document.open("text/html", "replace");
newWindow.document.write("<title>Where do I vote?</title>");
newWindow.document.write(message1);
newWindow.document.write(message2);
newWindow.document.write("<input type='button' value='close' onclick='window.close();' />");
}

function popup3() {
newWindow=window.open('','','toolbar=no, scrollbars=no, width=300,height=400');
precinct3();
}
function precinct4() {
var message1 = "<p><strong>You live in Precinct #4</strong></p>"
var message2 = "<p><strong>You are to vote at Ken Krum Recreation Center - 519 East Clay Street, Schoolcraft </strong></p>"
newWindow.document.open("text/html", "replace");
newWindow.document.write("<title>Where do I vote?</title>");
newWindow.document.write(message1);
newWindow.document.write(message2);
newWindow.document.write("<input type='button' value='close' onclick='window.close();' />");
}

function popup4() {
newWindow=window.open('','','toolbar=no, scrollbars=no, width=300,height=400');
precinct4();
}
function callMap() {
var line1 = "<h1><strong>Schoolcraft Township Hall</strong></h1><br />"
var line2 = "<h2><strong>50 East VW Ave, Vicksburg, MI 49097</strong></h2>"
newWindow.document.open("text/html", "replace");
newWindow.document.write("<title>Map</title>");
newWindow.document.write(line1);
newWindow.document.write(line2);
newWindow.document.write("<img src='menus/TWPHALL.gif' /><br/>");
newWindow.document.write("<input type='button' value='Close' onclick='window.close();' />");
}

function openWindow() {
newWindow=window.open('','','toolbar=no, scrollbars=no, width=550,height=550');
callMap();
}
