  /* Written by Ron Goldberg 1/05 */
  
  function pop(URL,width,height,left,top){
          newWindow = window.open(URL, "tempWin", "width=" +width+ ", height=" +height+ ", left=" +left+ ", top=" +top+ "scrollboars=yes");
   }

      
   /* Generic Pop-Up with all vars supplied as arguments */
   /* Currently used for Rental Equipment */
   function popGeneric(URL,name,width,height,left,top,scrollbars,toolbar,resizable){
          newWindow = window.open(URL ,name, "width=" +width+ ",height=" +height+ ",left=" +left+ ",top=" +top+ ",scrollbars=" +scrollbars+ ",toolbar=" +toolbar+ ",resizable=" +resizable);
		  newWindow.focus();
		  
   }	  
   
   /* Generic CENTERED Pop-Up (No Left, Top arguments needed) */	
   function popCentered(URL,name,width,height,scrollbars,toolbar,resizable){
          screenWidth = screen.availWidth;
          screenHeight = screen.availheight;
		  posLeft =  ((screenWidth/2) - (width/2));
          posTop =   ((screenHeight/2) - (height/2));
		  newWindow = window.open(URL ,name, "width=" +width+ ",height=" +height+ ",left=" +posLeft+ ",top=" +posTop+ ",scrollbars=" +scrollbars+ ",toolbar=" +toolbar+ ",resizable=" +resizable);
		  newWindow.focus();
   }	  
   
	
  
