   /*    note: all code herein is girlcode(tm), is copyrighted and may be used with permission. use the contact form on the website to make your request. type "girlcode" in the subject line.   */   /* DATE */   var month=new Array("January","February","March","April","May","June","July","August","September","October","November","December")   var day=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")      var today=new Date()   var thisDay=day[today.getDay()]   var thisMonth=month[today.getMonth()]   var year=today.getYear()      if(year<=1000){year=year+1900}   if(year>=2040){year=year-39}      var TheDate=thisMonth+" "+(today.getDate())+", "+year   /* POP UPS */   function getDetail(url){    var specs="scrollbars,width=375,height=400,resizable"    if(navigator.appName.indexOf("Microsoft")>=0){     specs+=",left=300,top=150"    } else {     specs+=",screenX=300,screenY=150"    }    var pop    pop=open(url,"detail",specs)    pop.focus()   }      /* TEMPERATURE */   var today=new Date()   var tempRange=""   var lo=3000, hi="10000"   var rnd=98726471*(today.getTime()/((today.getMinutes()+1)*1000))   lowTemp=lo+Math.floor(rnd%(hi-lo))   hiTemp=lowTemp+1234   tempRange=lowTemp+"<sup>o</sup> - "+hiTemp+"<sup>o</sup>"      /* TELL_A_FRIEND */   var url="http://granite.he.net/~sissy316/includes/content/tell_a_friend.php?referer="+location.href      function send_me(){    var ex_pop    ex_pop=open(url,"new","width=515,height=600,toolbar,scrollbars")    ex_pop.focus()   }   /* MEMBERSHIP LOG IN */   function logIn(){    var newWin=open("http://www.jesus21.com/content/login.php","searchWin","resizable,width=300,height=200")   }