<!-- Created :  Brian Cobb 														-->
<!-- For     :  Marathon Ashland Petroleum - Credit Card Summary Report			-->
<!-- Modified:  Ben Wakefield - September 15, 2005								-->
<!-- For     :  Marathon Petroleum Company, Aspire Mystery Shop Excel Reports	-->
<!-- 			added functionality to specify the new window name when		 	-->
<!-- 			calling the script. 											-->


function openWin(windowName)
{
  popUpParams = "toolbar=No,location=No,directories=No,status=No,menubar=Yes,";
  popUpParams = popUpParams + "scrollbars=Yes,resizable=Yes,"
  popUpParams = popUpParams + "width=1000, height=600, top=50, left=100";
  return window.open('', windowName ,popUpParams);
}

function loadingNewWinMsg( message, pageToLoad, windowName)
{
  var popUpWin;
  var htmlString;

  htmlString = "<html><head><\/head><body onload=location.href='" + pageToLoad + "'>";
  htmlString = htmlString + message;
  htmlString = htmlString + "<\/body><\/html>";

  popUpWin = openWin(windowName);
  popUpWin.document.write( htmlString );
  popUpWin.document.close();
}
