IMG01 = "http://www.arthuraboyleco.com/images/shamrock_small.gif"  //image when mouse is over the link
IMG02 = "http://www.arthuraboyleco.com/images/block_small.gif" //image when mouse isn't over the link
function imgover(imgname,StatTxt){
     imgname.src = IMG01;
     window.status = StatTxt;
}

function imgout(imgname){
     imgname.src = IMG02;
     window.status = '';
}

function SmallWindow(url) {
  bang = window.open(url,"PicWin","resizable,scrollbars,top=20,left=20,width=250,height=250");
  bang.Focus;
}
