// JavaScript poping up tables and figures
			function popupTab(url) 
			{
				 var width  = 800;
				 var height = 600;
				 var left   = 0//(screen.width  - width)/2;
				 var top    = 0//(screen.height - height)/2;
				 var params = 'width='+width+', height='+height;
				 params += ', top='+top+', left='+left;
				 params += ', directories=no';
				 params += ', location=yes';
				 params += ', menubar=no';
				 params += ', resizable=yes';
				 params += ', scrollbars=yes';
				 params += ', status=no';
				 params += ', toolbar=no';
				 newwin=window.open(url,'windowname5', params);
				 if (window.focus) {newwin.focus()}
				 return false;
			}
	
	
//this script pops pictures
   function PopupFig(sPicURL) { 
     window.open( "figure.htm?"+sPicURL, "","resizable=1,HEIGHT=400,WIDTH=400,location=yes");
	 } 
	 
//this script pops pictures
/*
   function PopupTab(sTabURL) { 
     window.open( "table.htm?"+sTabURL, "","resizable=1,HEIGHT=400,WIDTH=400");
	 } 

*/
