// Lakeshore Playground JavaScript Code
//  Gallery prescaling functions.
//
// Written by Robert J. Rouquette
// Date: 12:44 PM 8/26/2007

var page_width = document.getElementById("page_width");
var thumb_quality = document.getElementById("thumb_quality");

page_width.onchange = function() {
  location.href = "/index.php?page_width=" + page_width.value + "&url=" + encodeURIComponent(location.href);
}

thumb_quality.onchange = function() {
  location.href = "/index.php?thumb_quality=" + thumb_quality.value + "&url=" + encodeURIComponent(location.href);
}