
function packQuest(bedrooms, golocation) {
  var answer = confirm ("This will fill your shopping cart with the items we believe are appropriate for packing a house with "+bedrooms+" bedroom(s).\nAfter the cart is populated you may refine your selections by adjusting individual amounts or adding or removing items accordingly.\nDo you wish to continue?");
  if (answer)
    window.location=golocation;
  return false;
}

function roll(img_name, img_src)
{
	document.getElementById(img_name).src = img_src;
}
