﻿function fetchPage(pageID) {
  window.location = 'Pages.aspx?pid=' + pageID;
}
function fetch(newPage) {
    window.location = newPage;
}
function switchStyle(sElement, newStyle) {
  sElement.className = newStyle;
}
function boxState(box) {
  boxToChange = document.getElementById(box);
  if (boxToChange.style.display == 'block')
    boxToChange.style.display = 'none';
  else
    boxToChange.style.display = 'block';
}
function openFrame(location, width, height, title) {
  window.open(location, title, 'left=20,top=20,width=' + width + ',height=' + height + ',toolbar=0,resizable=0');
}
function chgCartImg(owner, over) {
    if (over)
        owner.src = 'Skins/Pinbored/cart_button_r.gif';
    else
        owner.src = 'Skins/Pinbored/cart_button.gif';
}