/*
  $Id: popup.js,v 1.1 2006/12/29 10:22:54 cowlesj 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,type) {

    if (type === 'image') {
// product_info.php / displayimage.php / product_reviews_info.php / product_reviews.php / product_reviews_write.php
        window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150');
    } else if (type === 'info') {
// advanced_search.php / lightbox.php / login.php
        window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=450,height=400,screenX=150,screenY=150,top=150,left=150');
    } else {
        alert('Sorry the popup is currently unavailable');
    }

}
