//
// Copyright (c) 2005-2006 BroadVision, Inc. All rights reserved.
//
// This software is copyrighted.  Under the copyright laws, this software
// may not be copied, in whole or in part, without prior written consent
// of BroadVision, Inc. or its assignees. This software is provided under
// the terms of a license between BroadVision and the recipient, and its
// use is subject to the terms of that license.
//
// This software may be protected by one or more U.S. and International
// patents. Certain applications of BroadVision One-To-One software are
// covered by U.S. patent 5,710,887.
//
// TRADEMARKS: BroadVision and BroadVision One-To-One are registered
// trademarks of BroadVision, Inc., in the United States and the European
// Community, and are trademarks of BroadVision, Inc., in other
// countries.  The BroadVision logo, is a trademark of BroadVision, Inc.,
// in the United States and other countries. Additionally, IONA and Orbix
// are trademarks of IONA Technologies, Ltd.  RSA, MD5, and RC2 are
// trademarks of RSA Data Security, Inc.
//

//
//
//
function doConfigure(form, tagName) {
  var cform_path = "/chrm/cf/formView.do?formTag=" + tagName;
  var url = new String( document.location) ;
  var hostpos = document.location.host.length - 1 ;
  var loc = url.indexOf ( "/", hostpos ) ;
  var ctxloc = url.indexOf ( "/",loc+1 ) ;

  var returnURL = url.substring (ctxloc);
  alert("Return URL: " + returnURL);

  var fullpath = "http://" + location.host + cform_path + "&returnUrl=" + returnURL;
  alert("Jump to Configure Page: " + fullpath);
  window.location.href=fullpath;
}

