function popGame(w,h) {
 if(screen.width) {
  x = (screen.width-w)/2 - 10
  y = (screen.height-h)/2 - 20
 }
 else {
  x = 150
  y = 100
 }
 window.open('pyramid.htm','freegames','resizable,width='+w+',height='+h+',top='+y+',left='+x)
}
