//    =======================================================================================
//    Template Name: PopUp.js                                              			
//    Directory:  Events & News Calendar Statistics    		                                 
//    Purpose:  Pops open a centerd window of a set size.	
//    ======================================================================================= 
//    Date       Modified By          Comments                                      		
//    --------   ---------------      ----------------------------------------------		
//    8/2003    Marj Kelly           Created                                      			
//    =======================================================================================


//function PopupFunc(filename){
//	//openCenterCenter(filename,'IndexResource','toolbar=yes,location=no,status=no,menubar=yes,scrollbars=yes,r//esizable=yes,width=700,height=500,top=0,left=0',700,500);
//	}

function PopupFunc(filename){
	openCenterCenter(filename,'IndexResource','toolbar=yes,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,top=0,left=0',700,500);
	}

function openCenterCenter(url,nm,parm,w,h){
		var newWindow = window.open(url,nm,parm);
		newWindow.focus();
//		newWindow.moveTo( (screen.width/2) - (w/2), 100);
	}