 function Hand(element,mode) {
    if (mode=="in") {
      cursortype = 'hand'
    } else if (mode=="out") {
      cursortype = ''
    }
  element.style.cursor = cursortype;
}

function LoadPage(t)
{
	var URL = t.options[t.selectedIndex].value;
	if (URL != "") window.location.href = URL;
}

function SpinImage(){
for (i = 0; i <= 5000; i++){
setTimeout("ShowImage()",i*50);
}
 
}
function ShowImage() {

}

