// opens a window
function openSat(content) {

  var sat = window.open(content+'.php', 'sat', 'width=600,height=660,screenX=250,screenY=35,left=250,top=35,menubar=no,locationbar=no,scrollbars=yes,resizable=yes');
  sat.focus();
}		

