<!--

var newWin = null;

if (document.images) {            // Active Images
    img1on = new Image();      
    img1on.src = "images/top12.jpg"; 
    img2on = new Image(); 
    img2on.src = "images/top22.jpg";  
    img3on = new Image();
    img3on.src = "images/top32.jpg";  
    img4on = new Image();
    img4on.src = "images/top42.jpg";
    img5on = new Image();
    img5on.src = "images/top52.jpg";    
	img6on = new Image();
    img6on.src = "images/side12.jpg";    
    img7on = new Image();
    img7on.src = "images/side22.jpg";  
    img8on = new Image();
    img8on.src = "images/side32.jpg";
    img9on = new Image();
    img9on.src = "images/side42.jpg";
    img10on = new Image();
    img10on.src = "images/side52.jpg";

    img1off = new Image(); 
    img1off.src = "images/top1.jpg"; 
    img2off = new Image();          
    img2off.src = "images/top2.jpg"; 
    img3off = new Image();
    img3off.src = "images/top3.jpg";  
    img4off = new Image();
    img4off.src = "images/top4.jpg";
    img5off = new Image();
    img5off.src = "images/top5.jpg";
    img6off = new Image();
    img6off.src = "images/side1.jpg";
    img7off = new Image();
    img7off.src = "images/side2.jpg";
    img8off = new Image();
    img8off.src = "images/side3.jpg";
    img9off = new Image();
    img9off.src = "images/side4.jpg";  
    img10off = new Image();
    img10off.src = "images/side5.jpg";                                                              
}    

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

function openMission() {
	var winProperties;
		
	winProperties = "top=0, left=0, location=no, menubar=no, toolbar=no, scrollbars=no, resizable=no, width=400, height=475";
	closePopWin();
	newWin = window.open("mission.htm", null, winProperties);
	newWin.focus();

}

function openCompleted() {
	var winProperties;
		
	winProperties = "top=0, left=0, location=no, menubar=no, toolbar=no, scrollbars=yes, resizable=no, width=625, height=475";
	closePopWin();
	newWin = window.open("Portfolio.html", null, winProperties);
	newWin.focus();

}

function openOtherCurrent() {
	var winProperties;
		
	winProperties = "top=0, left=0, location=no, menubar=no, toolbar=no, scrollbars=yes, resizable=no, width=625, height=350";
	closePopWin();
	newWin = window.open("currentlist.html", null, winProperties);
	newWin.focus();

}

function redirect(){

	window.navigate('index.htm');

}


function OpenPhotos(pageName) {
	var winProperties;
	
	winProperties = "top=0, left=0, location=no, menubar=no, toolbar=no, scrollbars=yes, resizable=no, width=320, height=300";
	closePopWin();
	
	newWin = window.open(pageName, null, winProperties);
	newWin.focus();

}

function OpenPhotosxxl(pageName) {
	var winProperties;
	
	winProperties = "top=0, left=0, location=no, menubar=no, toolbar=no, scrollbars=yes, resizable=no, width=660, height=700";
	closePopWin();
	
	newWin = window.open(pageName, null, winProperties);
	newWin.focus();

}

function closePopWin(){

	if (newWin && newWin.open) {
		newWin.close();
	}	

}
//-->
