
function droplinkmenu(which){

var home = "<a href=index.html>Home</a>";
var contact = "<a href=contact.html>Contact Us</a>";
var directions = "<a href=directions.html>Directions</a>";
var FAQs = "<a href=faq.html>FAQs</a>";
var history = "<a href=history.html>Festival History</a>";
var foods = "<a href=foods.html>Foods</a>";
var gallery = "<a href=gallery.phtml>Gallery</a>";
var performers = "<a href=performers.html>Performers</a>";
var schedule = "<a href=schedule.html>Schedule</a>";
var school_programs = "<a href=school.html>School Programs</a>";
var vendors = "<a href=vendors.html>Vendors</a>";
var vpal = "<a href=vpal.html>VPAL</a>";

if(which == "home"){ home = "Home";
} else if(which == "directions"){ directions = "Directions";
} else if(which == "contact"){ contact = "Contact Us";
} else if(which == "FAQs"){ FAQs = "FAQs";
} else if(which == "history"){ history = "Festival History"; 
} else if(which == "gallery"){ gallery = "Image Gallery"; 
} else if(which == "foods"){ foods = "Foods"; 
} else if(which == "performers"){ performers = "Performers"; 
} else if(which == "schedule"){ schedule = "Schedule"; 
} else if(which == "school_programs"){ school_programs = "School Programs"; 
} else if(which == "vendors"){ vendors = "Vendors"; 
} else if(which == "vpal"){ vpal = "VPAL"; }


document.write("<span class=menu>");
document.write(home);
document.write(" | ");
document.write(contact);
document.write(" | ");
document.write(directions);
document.write(" | ");
document.write(FAQs);
document.write(" | ");
document.write(history);
document.write(" | ");
document.write(performers);
document.write(" <br> ");
document.write(foods);
document.write(" | ");
document.write(gallery);
document.write(" | ");
document.write(schedule);
document.write(" | ");
document.write(school_programs);
document.write(" | ");
document.write(vendors);
document.write(" | ");
document.write(vpal);
document.write("</span>\n");

}


function dropheader(which){

document.write("<table align=center width=100% cellpadding=0 cellspacing=0 border=0>\n");
document.write("<tr><td valign=top rowspan=2 align=left><img src=images/lbird.jpg border=0></td>\n");
document.write("<td valign=top align=center><img src=images/titlebar.jpg border=0 alt='Welcome!'></td>\n");
document.write("<td rowspan=2 valign=top align=right><img src=images/rbird.jpg border=0></td></tr>\n");
document.write("<tr><td align=center class=menu nowrap>\n");

droplinkmenu(which);

document.write("</td></tr> </table><br><br>\n");

}



function dropfooter(){

document.write("<table align=center cellpadding=0 cellspacing=0>\n");
document.write("<tr><td class=credit align=center>All contents &copy; 2008 Vermont International Festival, All Rights reserved.</td></tr>\n");
//document.write("<tr><td class=credit align=center>Web hosting generously provided by <a class=Acredit href=http://www.sover.net  >SoverNet</a></td></tr>\n");
document.write("</table><br>\n");

document.write("<table align='center'  border='0' cellspacing='0' cellpadding='0'>\n");
  document.write("<tr>\n");
    document.write("<td align='center' class=axis>website by <a class=Acredit href=http://www.axiswebdesign.com>Axis Web Design </a>.</td>\n");
  document.write("</tr>\n");
document.write("</table>\n");

}


function dropbegintable(){

document.write("<!-- mother of all tables - holds the outer flag borders as well as the inner content. Flag borders will work in explorer and later netscape versions. -->\n");
document.write("<table border=0 cellpadding=0 cellspacing=0 width=100% height=100%>\n");
document.write("<tr >\n");
document.write("<td rowspan=3 background='images/Vbar.jpg' bgcolor=000000 width=51>&nbsp;</td>\n");
document.write("<td background='images/Hbar.jpg' height=36 bgcolor=000000>&nbsp;</td>\n");
document.write("<td rowspan=3 background='images/Vbar.jpg' bgcolor=000000 width=51>&nbsp;</td>\n");
document.write("</tr>\n");
document.write("<td>\n");
document.write("<table width=100% height=100% border=3 bordercolor=000000 cellpadding=0 cellspacing=0>\n");
document.write("<tr><td align=center>\n");

}

function dropendtable(){

document.write("</td></tr>\n");
document.write("</table>\n");

document.write("</td>\n");

document.write("</tr>\n");

document.write("<tr>\n");
document.write("<td background=\"images/Hbar.jpg\" height=36  bgcolor=000000>&nbsp;</td>\n");
document.write("</tr>\n");
document.write("</table>\n");

}