// +------------------------------------------------------------+
// | Created 011/25/2003              Last Modified 11/25/2003  |
// | Web Site:                 http://www.AmericanCatholic.org  |
// +------------------------------------------------------------+
// | Contains all the scripts for the EDC pages.                |
// | Less clutter on page				                        |
// |                                                            |
// |                            								|
// +------------------------------------------------------------+

// "OPEN ILLUSTRATOR CREDITS Script begins

<!--
var eCredits;
var eURL;
var winWidth;
var winHeight;
var options;

function openCredits(eURL) {
winWidth = 220;
winHeight = 220;
options = "width=" + winWidth + ",height=" + winHeight + ",scrollbars=no,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no";
 if (eURL) {  
  if (!eCredits || eCredits.closed){
    eCredits = window.open(eURL,'eCreditswin', options);  // Open a new window and show the specified page
    eCredits.focus();
	eCredits.moveTo(640,40);   
   									  }
  else{
    eCredits.close();
	eCredits = window.open(eURL,'eCreditswin', options);  // Open a new window and show the specified page
    eCredits.focus();
	eCredits.moveTo(640,40);
  	  }
 	    }
}

// Script Ends -->
// +------------------------------------------------------------+



