<!--

// ------- Please Fix Me! ---------------------------------------
// I know, using javascript to make images popup is dirty pool,
// but I honestly don't know enough about programming, or computers
// in general, to do it any other way.  If you know of a better
// method, please tell me so I can fix this garbage!
//
// Thank you,
// Jason Martens
// Lost in Translation
//-------------------------------------------------------------- 

function popImg(iName) {
var pURL=iName;
pInfo='toolbar=0,';
pInfo+='location=0,';
pInfo+='directories=0,';
pInfo+='status=0,';
pInfo+='menubar=0,';
pInfo+='scrollbars=0,';
pInfo+='resizable=1,';
pInfo+='width=350,';
pInfo+='height=490';
window.open(pURL, 'bigPop', pInfo);
}

-->
