<!-- MENU-LOCATION=NONE -->
<html xmlns:MMString="http://www.macromedia.com/schemes/data/string/">
<head>
<!-- Copyright 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved. -->
<title><MMString:loadString id="Objects/Layout/Layout_Table/title" /></title>
	
<script language="javascript">

//---------------     API FUNCTIONS    ---------------

function isDOMRequired() {
	// Return false, indicating that this is enabled when focus is in the code view.
	return false;
}

function objectTag() {
  // Return the html tag that should be inserted
  return "";
}

function objectToolMode() {
  return "layout table";	// Layout Table
}

function objectTagMarquee(left, top, width, height) {
  // Ignore this if DW is just trying to determine if the object tag
  // function exists.
  if (left == "")
  {
    return "";
  }

  MM.layoutBoxArgsLeft = parseInt(left);
  MM.layoutBoxArgsTop = parseInt(top);
  MM.layoutBoxArgsWidth = Math.abs(parseInt(width));
  MM.layoutBoxArgsHeight = Math.abs(parseInt(height));

  dw.popupCommand("Layout Table.htm");

  // Zero out the arguments, in case someone tries to replay the command.
  MM.layoutBoxArgsLeft = 0;
  MM.layoutBoxArgsTop = 0;
  MM.layoutBoxArgsWidth = 0;
  MM.layoutBoxArgsHeight = 0;

  return "";
}

</script>
	
</head>

<body>
</body>
</html>
