
function SelectImageAt(imgsrc,width) {
    var strHTML;
    strHTML="<img src='"+imgsrc+"' width='"+width+"' />";
    document.all.ProductImage.innerHTML = strHTML;
    //alert(strHTML);
}

function openPopupWindow(theURL,winName,features) {
   newWin=window.open(theURL,winName,features);
   if (newWin !=null) {
      newWin.opener=self;
      newWin.moveTo(0,0)
   }
}