function createControl(divid, url, flashid, width, height) {
  var d = document.getElementById(divid);
  d.innerHTML = '<object type="application/x-shockwave-flash" data='+url+' id='+flashid+' name='+flashid+' height='+height+' width='+width+'><param name="movie" value='+url+' /></object>';
}


function popupItem(item, width, height) {
  window.open(
    item,
    '_blank',
    'toolbar=0,location=0,statusbar=0,menubar=0,width='+width+',height='+height+',left=20,top=20,scrollbars=yes,resizable=no'
  );
}



function showPlan(floor, number) {
  popupItem(
    '/scheme/' + floor + '/' + number,
    600,
    600);
}