//javascript for swgc visual arts

// hides e-mail addresses from spammers
function codemailto(name,server){
 document.write('<a href="mailto:' + name + '@' + server + '">' + name + '@' + server + '</a>');
}

// controls the pop-up windows that display larger versions of photos
function popup(url,width,height){
 window.open(url,'name','width=' + width + ',height=' + height + ',left=75,top=75,resizable=yes');
}


