// Copyright (c) 2,010 AZGalleries.com. All Rights Reserved
// Unauthorized use of this code is strictly forbidden

function AutoSelectChanged (obj, idx)
{
  var iSelectedIndex = obj.selectedIndex ;
  if (iSelectedIndex != iaASSelectedIndexes [idx])
  {
    iaASSelectedIndexes [idx] = iSelectedIndex ;
    obj.form.submit () ;
  }
}

function PageLoad ()
{
  var idx, obj ;

  idx = 0 ; while (obj = document.getElementById ('AutoSelect' + (idx ++) + '_Form')) obj.reset () ;

  iaASSelectedIndexes = [] ;
  idx = 0 ; while (obj = document.getElementById ('AutoSelect' + idx))
   iaASSelectedIndexes [idx ++] = obj.selectedIndex ;

  DisableTextSelection (document.body) ;
}

function PageUnload ()
{
  var idx, obj ;

  idx = 0 ; while (obj = document.getElementById ('AutoSelect' + (idx ++) + '_Form')) obj.reset () ;
}

/*
var sLocation = location.toString () ;
if (sLocation.length && !sLocation.match (/http\:\/\/([-_0-9a-z]+\.)?azgalleries\.com(\/.*)?/))
 alert ('ATTENTION: This website is using copyrighted code stolen from http://www.azgalleries.com') ;
*/