/*
ProductIndex.js
Rich Reuter
Sogeti
rich.reuter@us.sogeti.com
Sept 02, 2008

This file contains the routine to open the product index popup window.
*/

function DisplayProductIndex()
{
    var width = 966;
    var height = 385;
    var left = Math.floor((screen.availWidth - width) / 2);
    var top = Math.floor((screen.availHeight - height) / 2);
    var params = 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top +  
        ',toolbars=no,statusbar=no,resizable=yes,scrollbars=yes';
    window.open('ProductIndex.axd', 'product_index', params, true);
}
