   closetime = 0;	// Close window after __ number of seconds?
   				// 0 = do not close, anything else = number of seconds
   function Start() {
   	preview = window.open("pills/pills.php3",'Pillole',"scrollbars=no,toolbar=no,width=300,height=400,left=350,top=100");
   	if (closetime) setTimeout("preview.close();", closetime*1000);
   }
   
   function doPopup() {
   	delay = 0;    // time in seconds before popup opens
   	timer = setTimeout("Start()", delay*1000);
   }
   
   
   function pills() {
   	window.open("pills/pills.php3",'Pillole',"scrollbars=no,toolbar=no,width=300,height=400,left=200,top=100");
   }

   function boopen() {
   	window.open("shop/bo5-1.html",'BuddhismoOggi',"scrollbars=yes,toolbar=no,height=437,width=700, left=50,top=50");
   }
   
   var myWidth=null;
   var myWeight=null;
   var right_browser=false;
   
   // Called by Requirements button
   function aboutScheme(){ 
   alert("\nThis example uses screen.height & screen.width to grab the screen resolution.\n\nThese were introduced in JavaScript1.2.");
   }
   
  
   // Used to indicate that JS1.2 is supported
   right_browser=true;
   // Grabs screen resolution
   myWidth = screen.width; 
   myHeight = screen.height;
   
   // If browser supports JS1.2
   if(right_browser)
   {
   }
   // If browser does not support JS1.2 - display browser name/version & message
   else
   {
     myWidth = 500;
     myHeight = 600;
   
   }

