<!-- Begin
/*  Original:  Eric King (eric_andrew_king@hotmail.com)     */
/*  Web Site:  http://redrival.com/eak/                     */
/*  This script and many more are available free online at  */
/*  The JavaScript Source!! http://javascript.internet.com  */

function recipeScreen(mypage, myname, w, h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 3;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',resizable=yes,toolbar=yes,scrollbars=yes,menubar=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function otherSite(mypage, myname, w, h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 3;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',menubar=yes,location=yes,status=yes,resizable=yes,toolbar=yes,scrollbars=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End -->
// ****** 004 emailMe ***********************************************************
function emailMe ()
{
  var emailText = "Comments?";
  var emailId = "mikeb";
  var emailHost = "recipesitereview.com";
  document.write("<a href=" + "mailto:" + emailId + "@" + emailHost+ ">" + emailText + "</a>");
}
// ****** END emailMe ***********************************************************