<!-- 

// Inline Pop Up Window

function inlinePopUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
if (strType=="audio") strOptions="resizable,height=200,width=400";
window.open(strURL, 'newWin', strOptions);
}

function PopupPic(sPicURL) { 
window.open( "http://www.evanmack.com/images/pictures.html?"+sPicURL, "","resizable=1,scrollbars=no,height=500,width=500"); 
} 

-->