function noSpam(user,domain) {
    locationstring = "mailto:" + user + "@" + domain;
    window.location = locationstring;
    }

picImages = new Array(
"images/header01.jpg",
"images/header02.jpg",
"images/header03.jpg",
"images/header04.jpg",
"images/header05.jpg",
"images/header06.jpg",
"images/header07.jpg",
"images/header08.jpg",
"images/header09.jpg",
"images/header10.jpg",
"images/header11.jpg",
"images/header12.jpg",
"images/header13.jpg",
"images/header14.jpg",
"images/header15.jpg",
"images/header16.jpg",
"images/header17.jpg"
);

thisPic = 0
imgCnt = picImages.length

function rotate() {if (document.images) {thisPic ++; if (thisPic == imgCnt) {thisPic = 0;};document.picFrame.src=picImages[thisPic];};};

randNum = Math.floor((Math.random() * imgCnt));
picName = picImages[randNum];
document.write('<img src="' + picName + '" border="0" width="598" height="100" alt="New York Wing Cadet Programs Civil Air Patrol" title="New York Wing Cadet Programs Civil Air Patrol">');
