/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
*  Copyright 2012 Adobe Systems Incorporated
*  All Rights Reserved.
*
* NOTICE:  All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any.  The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and may be covered by U.S. and Foreign Patents,
* patents in process, and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/
// Different actions occur in CSS panel, depending on the argument
// addSelectorOrProperty - Adds a selector or property depending ON where the focus is
// addSelector - Adds a selector
// addProperty - Adds a property
// selectNextPane - Navigates to next Pane in Css properties view
// selectPreviousPane - Navigates to previous Pane in Css properties view
function receiveArguments()
{
  //toggle between Classic and Modern CSS panel.
  if(arguments[0] != "")
  {
	dw.visCssShortcut(arguments[0]);
	return;
  }

}

