// JavaScript Document
function popGame(pagina) {
	window.open(pagina, 'Game', 'width=850,height=715,scrollbars=yes');
	return true;
}
function popFriend(pagina) {
	window.open(pagina, 'Friend', 'width=450,height=250,scrollbars=no');
	return true;
}
function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.timeflysby.com";
      var titulo="Timeflyby.com - Free Games";
      window.external.AddFavorite(url,titulo);
   }
   else {
      if(navigator.appName == "Netscape")
         alert ("Press Crtl+D to add this site");
   }
}