/**
 * @file
 * Custom javascript utilities.
 * 
 * @author Shannon M. Rause <shannon.rause@creativeflavor.com>
 * @version $Revision: 1.2 $
 * @version $Name: ECHOGEO_2010-07-13_2 $
 * @version $Id: main.js,v 1.2 2010/04/28 01:05:53 smr Exp $
 *
 * These files are copyrighted to Creative Flavor Inc. and are
 * subject to the terms of the applicable Service Agreement.
 * If no service agreement is available you must contact us at
 * legal@creativeflavor.com or 303-379-9450.
 * 
 * These files may be watermarked to ensure traceability.
 */

function openWindow(url,width,height) {
   x = (640 - width)/2, y = (480 - height)/2;

   if (screen) {
      y = (screen.availHeight - height)/2;
      x = (screen.availWidth - width)/2;
   }
   if (screen.availWidth > 1800) { 
      x = ((screen.availWidth/2) - width)/2; 
   }
   window.open(url,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',scrollbars');
}

