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('solitaire_game.htm','cinemateca','resizable,width='+w+',height='+h+',top='+y+',left='+x)
}
