/*
  $Id: base.js,v 1 2005/12/12 22:30:55 hpdl Exp $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

 function popupWindow(url,force,width,height,parameters) 
 {  
   if (typeof(width)=='undefined') width = 640;
   if (typeof(height)=='undefined') height = 480;   
   if (navigator.appName=='Microsoft Internet Explorer' && force!=true)
   {
     if (typeof(parameters)=='undefined') parameters='';
     showModelessDialog(url+parameters,window, "status:false;dialogWidth:"+width+"px;dialogHeight:"+height+"px"); 
   }
   else
   {
     if (typeof(parameters)=='undefined') parameters='';
     if (parameters=='undefined') parameters='';
     if (url.indexOf("?")==-1)
       windowCall = window.open(url+"?Nav=autre"+parameters, "popupWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width="+width+",height="+height+",top=150,left=150"); 
     else
       windowCall = window.open(url+"&Nav=autre"+parameters, "popupWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width="+width+",height="+height+",top=150,left=150"); 
     
   }
 }

