/*
  - Author(s): Rajesh George
  - Date: 07/17/2008
  - Description: Inital version
*/

function openMetaPopUp(shipId,metaCode){
  defPopUpURL = '/find/pb/metaPopUpA.do?shipId='+shipId+"&metaCode="+metaCode;
  window.open(defPopUpURL,'MetaPopUp', 'resizable=no,toolbar=no,location=no,width=725,height=575,directories=no,status=yes,scrollbars=yes,menubar=no');
}

// This function handles the navigation inside the meta pop up

function navigateTab(tabName) {
 var pLoc='';
 if(tabName=='A')
 	pLoc = '/find/pb/metaPopUpA.do?shipId='+shipId+"&metaCode="+metaCode;
 else if(tabName=='D')
 	pLoc = '/find/pb/metaPopUpD.do?shipId='+shipId+"&metaCode="+metaCode;
 document.location.href = pLoc;  
}

function reLoadTab(_tabName,_shipId,_metaCode){
 var pLoc='';
if(_tabName=='A')
 	pLoc = '/find/pb/metaPopUpA.do?shipId='+_shipId+"&metaCode="+_metaCode;
else if(_tabName=='D')
 	pLoc = '/find/pb/metaPopUpD.do?shipId='+_shipId+"&metaCode="+_metaCode;
 	document.location.href = pLoc;  
}

function enLargeMap(itinCode){
  defPopUpURL = '/find/pb/enlargeMap.do?itinCode='+itinCode;
  window.open(defPopUpURL,'MapPopUp', 'resizable=no,toolbar=no,location=no,width=725,height=575,directories=no,status=yes,scrollbars=yes,menubar=no');
}