//---------------------------------------------------------------
// Copyright (c) 2000-2003 Asset Web Design
// Pearland, Texas 281-412-3539
//
// Any use of this script without explicit permission from 
// Asset Web Design is prohibited.
//
// 2002-01-04
//---------------------------------------------------------------


function AdvWindowOpen (url,name,width,height) 
  {
  var options = '';

  <!-- options -->
  options = options + 'width=' + width + ',';
  options = options + 'height=' + height + ',';
  options = options + 'resizable=yes';

  <!-- window -->
  popupWin = window.open (url, name, options);
  popupWin.opener.top.name = "opener";
  }
  


function AdvWindowParentRedirect (url) 
  {
  window.opener.location.href = url; 
  self.close() 
  }
  


function AdvWindowShake() 
  {
  var i;
  
  if (parent.moveBy) 
    {
    for (i=35; i>0; i--) 
      {
      parent.moveBy (i, 0);
      parent.moveBy (-i, 0);
      }
    }
  }


