function doPageSetUp() {
  var tdl=document.getElementsByTagName("TD");
  for (i=0; i<tdl.length; i++) {
    if (tdl[i].getAttribute("class")=="detStockIcon" || tdl[i].getAttribute("className")=="detStockIcon") {
      tdl[i].onmouseover=function () { this.style.borderColor="#000000"; }
      tdl[i].onmouseout=function () { this.style.borderColor="transparent"; }
    }
  }
  changeLargeImage(0,1);
}

function changeLargeImage(idx,pid) {
  var iObj=document.getElementById("detLargeImage");
  iObj.src=CARA_PRODUCTS_IMGPATH+itemImageList[idx][pid];
}

function openLargeImage(s,x,y) {
  var h=Math.round((parseInt(screen.width)-400)/2), v=Math.round((parseInt(screen.height)-300)/2);
  var myWindowObj=window.open("","","width="+x+",height="+y+",left="+h+",top="+v+",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
  myWindowObj.document.open();
  myWindowObj.document.write("<html><head><title>POM</title></head><frameset rows=100% cols=100% frameborder=NO border=0 framespacing=0><frame src="+s+" frameborder=NO marginwidth=0 marginheight=0></frameset></html>");
  myWindowObj.document.close();
}

