function showpreview(url, desc)
{
var lsRegExp = /\+/g;
  // Return the decoded string
 desc = unescape(String(desc).replace(lsRegExp, " ")); 
  
  desc = typeof(desc) == "undefined" ? "" : desc;
document.getElementById("sp").innerHTML = '<img src="' + url + '" width="100" height="100" alt="" /><br />' + unescape(desc);  
}
function clearpreview()
{

  document.getElementById("sp").innerHTML = "Move your mouse over the cooking column name on the left for more information. All articles are exclusive to CDKitchen - so check back each day to see \"what's cooking\"!<br /><br />You can also view the <a class=\"red uline\" href=\"columns.html\">Cooking Columns Home Page</a>, or the <a class=\"red uline\" href=\"archives.html\">cooking archives</a> for previous articles."; 

}
//-->
