
// opens Price window with part number

function getPrice(partnum) 
{ 
   PriceWindow = window.open ('', 'Price', 'toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=0,resizable=1,height=235,width=350');
   PriceWindow.opener = self;
   PriceWindow.location.href = '/prices/prices.htm' + "?" + partnum; 
   PriceWindow.focus(); 
} 

