// +------------------------------------------------------------+
// | Created 01/31/2002              Last Modified 03/29/2004   |
// | Web Site:                        http://www.StAnthony.org  |
// +------------------------------------------------------------+
// | Contains all the scripts for the prayer requests page;	    |
// | Less clutter on page				                        |
// |                                                            |
// | 								                            |
// +------------------------------------------------------------+

// "Guidelines" Script begins
<!--
var objGuidelines;
var calURL;
var calWinWidth;
var calWinHeight;
var calOptions;


function openGuidelines(calURL) {
calWinWidth = 420;
calWinHeight = 580;
var calOptions = "width=" + calWinWidth + ",height=" + calWinHeight + ",scrollbars=no,resizable=yes,menubar=no,status=no,toolbar=no,location=no,directories=no";
 if (calURL) {  
  if (!objGuidelines || objGuidelines.closed){
    objGuidelines = window.open(calURL,'Guidelineswin', calOptions);  // Open a new window and show the specified page
    objGuidelines.focus();
	objGuidelines.moveTo(506,40);   
   									  }
  else{
    objGuidelines.close();
	objGuidelines = window.open(calURL,'Guidelineswin', calOptions);  // Open a new window and show the specified page
    objGuidelines.focus();
	objGuidelines.moveTo(506,40);
  	  }
 	    }
}
// Script Ends -->



