function showSpecials(){
	
var dateobj=new Date();
var today=dateobj.getDay();	
	
var Win = window.open("","","width=400, height=250");
Win.document.write("<html><body style='background-color: 4F0102; color: FFFFFF; font-family: Georgia; font-size: 12px;'>")

var msg;
switch(today){
case 1:
      msg = "<p><img src=file:///C|/Users/Richard/images/monday.gif /></p><p><strong>Grilled Beef Tenderloin au Poivre</strong> – Black pepper crusted steak with spinach stuffed broiled tomato, shoestring French fries and roasted garlic aoli.</p> <p><strong>Nantucket Pie</strong> -  Shrimp, scallops and scrod baked with sherry and butter, topped with a crab stuffing.</p>\n";
break;
case 2:
      msg = "<p><img src=file:///C|/Users/Richard/images/tuesday.gif /></p><p><img src=file:///C|/Users/Richard/images/specials.gif /></p><p><strong>Cedar Planked Scallops</strong> – Sea scallops with asparagus, lemon and crème fraîche risotto.</p> <p><strong>Grilled Beef Tenderloin au Poivre</strong> – Black pepper crusted steak with spinach stuffed broiled tomato, shoestring French fries and roasted garlic aoli.</p>\n";
break;
case 3:
      msg = "<p><img src=file:///C|/Users/Richard/images/wednesday.gif /></p><p><strong>Angelhair and Tomatoes</strong> – Vine ripened tomatoes, olive oil, garlic, basil, spinach and feta cheese tossed with angelhair pasta. Add your choice of shrimp or chicken.</p> <p><strong>Chicken Athens</strong> - Grilled breast of chicken with roasted vegetables and a creamy buttermilk feta cheese sauce.</p>\n";
break;
case 4:
      msg = "<p><img src=file:///C|/Users/Richard/images/thursday.gif /></p><p><strong>Apple Chicken</strong> - Walnut-crusted breast of chicken browned with cheddar, drizzled with apple cider glaze.</p> <p><strong>Grilled Beef Tenderloin au Poivre</strong> – Black pepper crusted steak with spinach stuffed broiled tomato, shoestring french fries and roasted garlic aoli.</p>\n";
break;
case 5:
      msg = "<p><img src=file:///C|/Users/Richard/images/friday.gif /></p><p><strong>Five-Cheese Baked Macaroni</strong> - Baked with aged cheddar, Parmesean, Ricotta, Muenster and Monterey Jack.</p> <p><strong>Roast Duck á l’Orange </strong> - Slow roasted crispy duck with an orange glaze, topped with crisped orange rind, crisp leeks and shoestring carrots.</p>\n";
break;
case 6:
      msg = "<p><img src=file:///C|/Users/Richard/images/saturday.gif /></p><p><strong>Chicken Florentine</strong> - Breaded breast of chicken stuffed with Crimini mushrooms and baby spinach, topped with a roasted garlic sauce and roasted mixed potatoes.</p> <p><strong>Pepper Glaze French Cut Pork Chop </strong> - Pan seared and oven baked, served with a cider tricolor pepper glaze, and sweet apricot carrots</p>\n";
break;
default:
      msg = "The 42nd Street Bistro & Wine Bar is closed on Sunday's.\n";
break;
}
Win.document.write(msg);
Win.document.write("<br><br><a href='javascript:window.close();' style='color:FFFFFF;'>Close Window</a>");
Win.document.write("</body></html>");
Win.document.close();
}
