// CURATORS
function showCurators() 
{
document.write("Curator: Zina Facemire</a><br><a href='mailto:zina.facemire@fcps.edu'>zina.facemire@fcps.edu</a>");
}
// LAST MODIFIED
function showLastUpdate() 
{
document.write("Last Update: ")
// document.write("Unavailable");
document.write(document.lastModified);
}
// NEWS SCROLLER
//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
var tickercontents=new Array()
//tickercontents[0]='<div class="news_scroll">WPA Academy Student to be featured at Cinema City International Film Festival!</div>'
//tickercontents[3]='<div class="news_scroll"></div>'
//tickercontents[4]='<div class="news_scroll">Breathtaking Fashion/Dance Runway Show on May 8th and 9th!</div>'
tickercontents[0]='<div class="news_scroll">At West Potomac - Failure is NOT an option!</div>'
//tickercontents[0]='<div class="news_scroll">The West Potomac Prom will be on Saturday, May 31, 2008!</div>'
tickercontents[1]='<div class="news_scroll">Excellence is our tradition!</div>'
//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='100%'
var tickerbgcolor='white'
//configure the below variable to determine the delay between ticking of messages (in miliseconds
var tickdelay=7000
////Do not edit pass this line////////////////
var currentmessage=0
function changetickercontent(){
if (document.layers){
document.tickernsmain.document.tickernssub.document.write(tickercontents[currentmessage])
document.tickernsmain.document.tickernssub.document.close()
}
else
crosstick.innerHTML=tickercontents[currentmessage]
if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}
function start_ticking(){
if (document.layers)
document.tickernsmain.visibility="show"
else
crosstick=document.getElementById? document.getElementById("tickerie") : document.all.tickerie
changetickercontent()
}
if (document.all||document.getElementById)
document.write('<div id="tickerie" style="width:'+tickerwidth+'; background-color:'+tickerbgcolor+'"></div>')
window.onload=start_ticking
//ROLLOVER FUNCTION
<!--
if (document.images) {
button1on = new Image();
button1on.src = "Images/map2.jpg";
button1off = new Image();
button1off.src = "Images/map1.jpg";
}
function turnOn(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "on.src");
 }
}
function turnOff(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "off.src");
 }
}
function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resize=yes");
}
// -->