/* Functions to open popup windows */
var newwindow;
function sizinginfo()
{
	newwindow=window.open('sizing_info.php','SizingInfo','width=400, height=370, scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

var newwindow2;
function productinfo(line)
{
	newwindow2=window.open('products_details.php?line='+line,'ProductInfo','width=400, height=570, scrollbars=yes');
	if (window.focus) {newwindow2.focus()}
}