function check_please(guess)
{
	var popwin = window.open('http://www.nationalreview.com/script/wotd.php?g='+guess,'console','width=350,height=360');
	if (popwin==null || typeof(popwin)=="undefined") alert("Hrmph! The window we were trying to open was blocked! Please disable your popup blocker temporarily and try again.");
	if (popwin!=null || typeof(popwin)!="undefined") popwin.focus();
}

function place(blank)
{
 var date = new Date();
 var d  = date.getDate();

 f = even_or_odd(d);

 if (f == true)
 {
  document.write(
       '<td><table width="100%"  border="0" cellspacing="0" cellpadding="2">\r'
      +'        <tr>\r'
      +'        <td height="50">'
      +'		<div align="center"><a href="https://www.kable.com/pub/ntrv/subUpdate.asp?where=1"><img src="/ads/images/ad_banner_250p_magsub2.gif" width="250" height="60" border="0"></a></div>'
      +'	</td>'
      +'        </tr>'
      +'    </table></td>'
      +'    <td><table width="100%"  border="0" cellspacing="0" cellpadding="2">'
      +'        <tr>'
      +'        <td>'
      +'		<div align="center"><a href="https://www.kable.com/pub/onnr/subupdate.asp?where=1"><img src="/ads/images/ad_banner_250p_digitalsub2.gif" width="250" height="60" border="0"></a></div>'
      +'	</td>'
      +'        </tr>'
      +'    </table></td>'
      +'  </tr>'
      +'</table></td>');
 } else {
  document.write(
       '<td><table width="100%"  border="0" cellspacing="0" cellpadding="2">'
      +'        <tr>'
      +'        <td height="50">'
      +'		<div align="center"><a href="https://www.kable.com/pub/onnr/subupdate.asp?where=1"><img src="/ads/images/ad_banner_250p_digitalsub.gif" width="250" height="60" border="0"></a></div>'
      +'	</td>'
      +'        </tr>'
      +'    </table></td>'
      +'    <td><table width="100%"  border="0" cellspacing="0" cellpadding="2">'
      +'        <tr>'
      +'        <td>'
      +'		<div align="center"><a href="https://www.kable.com/pub/ntrv/subUpdate.asp?where=1"><img src="/ads/images/ad_banner_250p_magsub.gif" width="250" height="60" border="0"></a></div>'
      +'	</td>'
      +'        </tr>'
      +'    </table></td>'
      +'  </tr>'
      +'</table></td>');
 }
}

function even_or_odd(value)
{
 check = value % 2;

 if (check == "1")
 {
  return false;
 } else {
  return true;
 }
}

