  function openWin(strHRE,strWID,strHEI,strTOO,strLOC,strSTA,strMEN,strSCR,strRES,strPage) 
  {
   //***********************************************************
   //* This function opens a Child Window. The parameters are: *
   //*							       *
   //* 	· strHRE = Link.	· strWID = Width.	       *
   //*  · strHEI = Height.	· strTOO = Toolbar.	       *		     
   //*  · strLOC = Location.	· strSTA = Status.	       *		     
   //*  · strMEN = Menubar.	· strSCR = Scrollbar.	       *		     
   //*  · strRES = Resize.	.			       *		     
   //*							       *
   //* Note: All variables are strings, to the Menu variables  *
   //*       you can assign ('0' or 'no') and ('1' or 'yes')   *
   //*       You chose :)				       *	 
   //***********************************************************
   //Var Declaration.
     var strSIZ;
     var intXPO;
     var intYPO;
   //Calculate center Screen.    
     if ((parseInt(navigator.appVersion) >= 4 ))
     {
      intXPO = (screen.width - parseInt(strWID)) / 2;
      intYPO = (screen.height - parseInt(strHEI)) / 2;
     }   
   //Programming.
   strSIZ ='width='+ strWID + ',height=' + strHEI + ',left=' + intXPO  + ',top=' + intYPO + ',toolbar=' + strTOO + ',location=' + strLOC + ',status=' + strSTA + ',menubar=' + strMEN + ',scrollbars=' +strSCR+ ',resizable=' + strRES;
   result = window.open(strHRE,strPage,strSIZ);
  } 
 
