/**** Window launcher ****/
function Launch(page) { 
OpenWin = this.open(page, "New", "top=20, left=15, width=620, height=430, scrollbars=yes, location=yes, menubar=yes, resizable=yes, toolbar=yes, status=yes"); } 

/**** Get formatted date ****/
function GetFmtDate() {
var today = new Date();
var year = today.getYear();
var month = today.getMonth() + 1;
var day = today.getDate();
if (year < 2000) year = year + 1900;
if (month < 10) month = "0" + month;
if (day < 10) day = "0" + day;
document.write(month + "/" + day + "/" + year); }

/**** Recipes ****/
function GetFood() {
var s = document.recipe.picked.selectedIndex;
var o = document.recipe.picked.options[s].value;
if(o != "none") { var selected = "http://ashburnweb.subportal.com/recipes/" + o; 
window.location=selected; } }

/**** No Spam ****/
function NoS(a, w, x) { 
window.location="mail"+"to"+":"+a+"%40"+w+"%2e"+x; }

 
