<!--
    image = new Array();
    imgIdx = 0;

    function setImg(url) {
        image[imgIdx] = new Image();
	image[imgIdx].src = url;
	imgIdx++;
    }
	
    function Img_2(n){
        if(document.images){
            document.myImg_2.src=image[n-1].src;
        }
    }
//-->
