// Image array
var imageswc = new Array(3);
imageswc[0] = new Image();
imageswc[0].src = "/images/link_to_page_on.gif";
imageswc[1] = new Image();
imageswc[1].src = "/images/e_mail_page_on.gif";
imageswc[2] = new Image();
imageswc[2].src = "/images/book_mark_page_on.gif";


//rollover function
function ro(name, pic) { document.images[name].src = pic; };

// Bookmark Code
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

// E Mail Link
function emailink(){
window.location = "mailto:"+"?subject=Hi, this web page might interest you..." + "&body="+window.location.href;
}

