function openCentered(theURL,winName,winWidth,winHeight) {
  var w = (screen.width - winWidth)/2;
  var h = (screen.height - winHeight)/2 -60;
  features = 'scrollbars=0,resizable=1,width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
  window.open(theURL,winName,features);
}
/* // window.open( url, '_blank', 'fullscreen=1, scrollbars=1, toolbar=0, resizable=1' );
*/
function full(theURL,winName) {
features = 'fullscreen=1, scrollbars=0, toolbar=0, resizable=1';
  window.open(theURL,winName,features);
}

function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite("http://www.ispeles.lv","iSpeles.lv - spēlē spēles par velti")
      }
   }

