  var imgList= new Array();
  var sImageRestore= null;

  function loadImage(sPicture, sImgSrc) {
    imgList[sPicture]= new Image();
    imgList[sPicture].src= sImgSrc;
  }

  function rollIn(sImgName, sPicture) {
    sImageRestore= document[sImgName].src;
    document[sImgName].src= imgList[sPicture].src;
  }

  function rollOut(sImgName, sPicture) {
    document[sImgName].src= sImageRestore;
    sImageRestore= null;
  }
   
	function OpenWindow(strPage, strName, strProps)
	{

		var aaa
		if (strProps.length == 0)
		{
		
			strProps = "height=400,width=405,status=no,menu=no,scrollbars=yes,address=no"
		}
		window.open(strPage, strName, strProps)
	}
	
	function EnlargeImage(strImage)
	{
		strProps = "height=400,width=405,status=no,menu=no,scrollbars=yes,address=no";		
		window.open('/estore/detail.asp?Img=' + strImage, 'Details', 'height=468,width=500,status=no,menu=no,scrollbars=no,address=no');
	}