// JavaScript Document

function toggleIt(a) {
if (document.getElementById(a).style.visibility == "visible") {
document.getElementById(a).style.visibility = "hidden";
}
else {document.getElementById(a).style.visibility = "visible";
}
}

function openIt() {
myWindow = window.open("mailer.asp", "tinyWindow", 'toolbar,width=300,height=310')
}

function swapIt(imNo) {
var imName = "images/" + imNo + "big.jpg";
document.galleryPic.src = imName;
return false;
}

