function showInfo(text)
{
  alert(text);
}
function showRules()
{
  rulesWin = window.open('rules/index.html','rules','width=700,height=600,screenX=10,screenY=10,resizable=yes,scrollbars,status');
}
function pausecomp(millis)
{
  date = new Date();
  var curDate = null;
  do
  {
    var curDate = new Date();
  }
  while(curDate-date < millis);
} 