function GoToItem(form){
var URL = document.list.items.options[document.list.items.selectedIndex].value;
window.location.href = URL;
}

function showImage(name,src) {
    if (document.images)
    {
        document.images[name].src = src;
    }
    else
    {
    	alert('No picture selected');
    }
}

function GoToItem(form){
var URL = document.list.items.options[document.list.items.selectedIndex].value;
window.location.href = URL;
}

function toggleDiv (id) {
    var ele = document.getElementById (id);
    
    if (ele.style.display=='block')
    {
      ele.style.display = 'none';
    }
    else
    {
      ele.style.display = 'block';
    }
}
