<!-- //
function goToURL(form)
  {

    var myindex=form.dropdownmenu.selectedIndex
    if(!myindex=="")
      {
        window.location.href=form.dropdownmenu.options[myindex].value; 
      }
}

function showImage(url) {
   winStats='resizable=no,toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=yes,width=435,height=295'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=20,top=25'
    }else{
      winStats+=',screenX=20,screenY=25'
    }
	helper=window.open(url,"SuzukiCayman",winStats)     
}

function open_window(url) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=538,height=338');
}
// -->