function scrollover_top(td_id,mouse) {
  if(mouse=='in') {
    document.getElementById(td_id).style.background='url(img/'+td_id+'.png) no-repeat 0px -67px';
  }
  if(mouse=='out') {
    document.getElementById(td_id).style.background='url(img/'+td_id+'.png) no-repeat 0px 0px';
  }
}
function scrollover_navi(li_id,mouse) {
  if(mouse=='in' && document.getElementById(li_id).className=='deactiv') {
    document.getElementById(li_id).style.background='url(img/navi.png) no-repeat 0px -16px';
  }
  if(mouse=='out' && document.getElementById(li_id).className=='deactiv') {
    document.getElementById(li_id).style.background='url(img/navi.png) no-repeat 0px 0px';
  }
}

function model_detail(model_id) {
  modelwindow = window.open("sedcard/sedcard.php?model_id="+model_id,"modelwindow","left=210,top=180,width=650,height=550");
  modelwindow.focus();
}

