

<!--Browser Detection -->

bName = navigator.appName;
   bVer = parseInt(navigator.appVersion);
   br = "";

   if (bName == "Netscape" && bVer == 4) br = "n4";
      else if (bName == "Netscape" && bVer == 3) br = "n3";
      else if (bName == "Microsoft Internet Explorer" && bVer >=4 )
          br = "e4";
      else if (bName == "Microsoft Internet Explorer") br = "e3";
      else br = "n2";


<!-- Check for frames, break out if yes -->

function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}



<!-- pop-up window for large photos-->
		  
function popup(field, id) {
  var popupURL = "/shopping/bigimage.phtml?" +
    field + "=" + id;
  newWindow = window.open(popupURL, "subWindow","width=650,height=500,scrollbars=no");
  newWindow.top.location.href = popupURL;
  newWindow.focus();
}  

<!-- pop-up window for medium photos

function popup_medium(field, id) {
  var popupURL = "/shopping/mediumimage.phtml?" +
    field + "=" + id;
  newWindow = window.open(popupURL, "subWindow","width=650,height=500,scrollbars=no");
  newWindow.top.location.href = popupURL;
  newWindow.focus();
}  
<!-- other pop-ups-->
		  
function popup_changedesignimages(design_id) {
  var popupURL = "/admin/designimages.phtml?design_id=" + design_id;
  newWindow = window.open("", "subWindow","width=600,height=600,scrollbars=no");
  newWindow.top.location.href = popupURL;
  newWindow.focus();
  
  
}

function popup_changeitemimages(item_id) {
  var popupURL = "/admin/itemimages.phtml?item_id=" + item_id;
  newWindow = window.open("", "subWindow","width=600,height=600,scrollbars=no");
  newWindow.top.location.href = popupURL;
  newWindow.focus();

}

