<!--
/* fixImgs script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Cat Arriola :: http://astrodiva.journalspace.com */
function fixImgs(whichId,maxW){
var i=0
var h=0
var w=0
var pix=document.getElementById(whichId).getElementsByTagName('img')
for(i=0;i<pix.length;i++){
w=pix[i].width
h=pix[i].height
if(w>maxW){
f=1-((w-maxW)/w)
pix[i].width=w*f
pix[i].height=h*f}}}
/*http://www.sitepoint.com/article/standards-compliant-world/3*/
function externalLinks(){
if(!document.getElementsByTagName)return
var anchors=document.getElementsByTagName("a")
for(var i=0;i<anchors.length;i++){
var anchor=anchors[i]
if(anchor.getAttribute("href")&&
anchor.getAttribute("rel")=="external")
anchor.target="_blank"}}
function bookmark(){
netscape="Use CTRL+D to add a bookmark to this site."
if(navigator.appName=='Microsoft Internet Explorer'){
window.external.AddFavorite('http://www.gardenstew.com/','GardenStew.com -  Home and Gardening Forums & Blogs')}
else if(navigator.appName=='Netscape'){
alert(netscape)}}
-->


