<!-- MENU-LOCATION=NONE -->
<!-- Copyright 2002, 2003 Macromedia, Inc. All rights reserved. -->
<html xmlns:MMString="http://www.macromedia.com/schemes/data/string/">
<head>
<title><MMString:loadString id="Menus/MM/CC_LaunchQuickStart/title" /></title>
<script>
var QUICK_START = "Help/QuickStart.htm";   //location of file

function canAcceptCommand()
{
	return true;
} //canAcceptCommand


function launchQuickStart()
{
  var configPath = dw.getConfigurationPath();
  if (configPath)
  {
    var rootPath = configPath.replace(/Configuration$/,""); //start above config folder
    var qsPath = rootPath + QUICK_START;
    if (DWfile.exists(qsPath))  //if file exists
    {
      dw.browseDocument(qsPath);   //launch in browser
    }
  }
}
</script>
</head>
<body onLoad="launchQuickStart()">
</body>
</html>
