var hotkey=160
var destination="http://www.supramax.cz/"
//var destination="admin/main.php?pg=prihlaseni"
if (document.layers)
  document.captureEvents(Event.KEYPRESS)

function backhome(e){
  if (document.layers){
    if (e.which==hotkey) {
      window.location=destination
    }
  }
  else if (document.all){
    if (event.keyCode==hotkey) {
      window.location=destination
    }
  }
}
document.onkeypress=backhome

function openMap(){
	window.open("http://www.mapy.cz/?st=search&mp=base&zm=16&cx=133065936&cy=135938720&pw=815&ph=641&fr=&pg=0&ppg=0&ac=1&sx=133065520&sy=135938704&stxt=ACE%20Consulting,%20s.r.o.&is=Konviktská%2024,%20110%2000%20Praha%201,%20tel.:%20222%20005%20105,%20606%20761%20530,%20e-mail:%20info@ace-consulting.cz&print=1", "aceMap", "toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, width=850, height=850"); 	
}
