//
//      PROGRAM
//
//                 Name:  Assign Campaign
//
//           Written by:  Kevin M. Penner
//                 date:  07/18/2006
//
//          Description:  Allows toll free numbers to be assigned to
//                        a media company.
//
//
//      RUNTIME
//
//           Parameters:
//
//        Support Files:
//
//          Directories:
//
//            Databases:
//
//                Files:
//
//
//      NOTES
//
//
//      FUTURE ENHANCEMENTS
//
//
//      MODIFICATION HISTORY
//
//      No.    Date    By   Reason
//      ---  --------  ---  -------------------------------------------------
//
// ----------------------------------------------------------------------

function new_window( x_pos, y_pos, scroll, url, number )
{
   var window_obj;

   if (!scroll){ scroll = 0; };
   if (!number){ number = "w" + (Math.random() * 1000000000000000000); };

   window_obj = window.open( url,
                             number,
                             "resizable=yes,scrollbars=" + scroll + ",status=0,width=" + x_pos + ",height=" + y_pos );
   window_obj.focus();
}

// ----------------------------------------------------------------------

function closepage( update_caller )
{
   if (update_caller)
   {
      window.opener.document.location.reload();
   }
   window.close()
}

// ----------------------------------------------------------------------

function firstfocus( element_id )
{
   document.getElementById( element_id ).focus();
}

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
//  Copyright (C) Novo1 - Williston, all rights reserved.
//
//  "codito ergo sum"
// ----------------------------------------------------------------------

