// JavaScript Document
function toggleImg(img) {
  src = img.src;
  if(src.indexOf('_off') != -1){
    img.src = src.replace('_off', '_on');
  } else if(src.indexOf('_on') != -1){
    img.src = src.replace('_on', '_off');
  } else {
  }
}

function openPopupWindow(page, width, height) {
  features = "width="+width+","
           + "height="+height+","
           + "toolbar=no,"
           + "location=no,"
           + "status=no,"
           + "resizable=yes,"           
           + "menubar=no,"
           + "scrollbars=yes,"
           + "top="+(window.screen.height-height)/2+","
           + "left="+(window.screen.width-width)/2;
  window.open(page,"updWin",features);
}

function openStore(url){
  width = "1000";
  height = "600";
  features = "width="+width+","
           + "height="+height+","
           + "toolbar=yes,"
           + "location=yes,"
           + "status=yes,"
           + "resizable=yes,"
           + "menubar=yes,"
           + "scrollbars=yes,"
           + "top="+(window.screen.height-height)/2+","
           + "left="+(window.screen.width-width)/2;
  window.open(url,"updWin",features);
}
