// JavaScript Document
<!--
function flameOn(the_id)
{
var source = document.getElementById(the_id);
source.className = 'sp_thumbnail_on';
}

function flameOff(the_id)
{
var source = document.getElementById(the_id);
source.className = 'sp_thumbnail_off';
}

function flameOnShelf(the_id)
{
var source = document.getElementById(the_id);
source.className = 'sp_thumbnail_shelf_on';
}

function flameOffShelf(the_id)
{
var source = document.getElementById(the_id);
source.className = 'sp_thumbnail_shelf_off';
}

function showMe(id) { //v2.0
  window.open('detail.php?id='+id,'detailview','width=500,height=500,scrollbars=none,toolbar=none');
}

function showMeSundry(filename, width, height) { 
  width += 20;
  height += 20;
  window.open(filename,'detailview','width='+width+',height='+height+',scrollbars=none,toolbar=none');
}

function GetSelectedItem(selectbox) {

len = selectbox.length
i = 0
chosen = "none"

for (i = 0; i < len; i++) {
if (selectbox[i].selected) {
chosen = selectbox[i].value
}
}

return chosen
} 

//-->
