img1on = new Image();           // Active images
img1on.src = "images/logo_on.jpg";  
img2on = new Image(); 
img2on.src = "images/home_on.jpg";  
img3on = new Image();
img3on.src = "images/about_bill_on.jpg";
img4on = new Image();
img4on.src = "images/treelife_on.jpg";
img5on = new Image();
img5on.src = "images/contact_on.jpg";

img1off = new Image();          // Inactive images
img1off.src = "images/logo.jpg"; 
img2off = new Image();
img2off.src = "images/home_off.jpg";  
img3off = new Image();
img3off.src = "images/about_bill_off.jpg";
img4off = new Image();
img4off.src = "images/treelife_off.jpg";
img5off = new Image();
img5off.src = "images/contact_off.jpg";


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

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
		  }
		  
function imagepopup(name,imagename,imagewidth,imageheight, imgcaption) {
	var winwidth= imagewidth+60;
	var winheight = imageheight +90; 

    
                 myhandle=window.open("","myWindow","width="+winwidth+",height="+winheight, scrollbars=0);
    myhandle.document.writeln('<html>');

	myhandle.document.writeln('<head>');

  	myhandle.document.writeln('<title>'+name+'</title>');

	myhandle.document.writeln('<link rel="stylesheet" type="text/css" href="style/popup.css" title="stylesheet" media="screen" />');
myhandle.document.writeln('</head>');
  	myhandle.document.writeln('<body>');

myhandle.document.writeln('<div class="page">');

    myhandle.document.writeln('<a  href="javascript:close()"><img class="imglink" src="'+imagename+'" width="'+imagewidth+'" height="'+imageheight+'" alt="big image" /></a>');
 
myhandle.document.writeln('<div class="imgcaption">'+imgcaption+'</div>');

myhandle.document.writeln('</div>');


myhandle.document.writeln('<br /><a  href="javascript:close()">close</a>');

    myhandle.document.writeln('</body>');
  	
  	myhandle.document.writeln('</html>');
}



















