﻿// JScript File
function showInfo(shipID, locationID, estimateID, imageID){
var MyWin;
var MyUrl;
MyUrl = 'http://ShipWatcher.com/ShipInfo.aspx?i='+shipID+'&l='+locationID+'&e='+estimateID+'&g='+imageID;
MyWin = window.open(MyUrl, 'ShipInfo', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,status=yes,height=400,Width=400');
MyWin.focus();
}
function displayMap(shipID, locationID, estimateID, imageID){
var MyWin;
var MyUrl;
MyUrl = 'http://ShipWatcher.com/DisplayMap.aspx?i='+shipID+'&l='+locationID+'&e='+estimateID+'&g='+imageID;
MyWin = window.open(MyUrl, 'DisplayMap', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,status=yes,height=550,Width=550');
MyWin.focus();
}


