// report.js
// javascript stuff for dive trip reports ...
//--------------------------------------------------------------


function showMap(mWidth, mHeight, mLeft, mTop)
{
    picWindow=window.open("map.html","Map","width=" + mWidth + ",height=" + mHeight + ",screenX=" + mLeft + ",left=" + mLeft + ",screenY=" + mTop + ",top=" + mTop + ",scrollbars=no, resizable=yes");
    //picWindow.focus();
}

