﻿function displayStockLevelWindow(app, StockLevel) {
    window.open(app + "OurStockInfo.aspx?StockLevel=" + StockLevel, "StockLevelInfo", "left=300, top=300, width=400, height=200, resizable=yes, scrollbars=yes, status=yes")
}

function displaySupplierStockLevelWindow(app, ProductID, StockLevel) {
    window.open(app + "SupplierStockLevelInfo.aspx?pID=" + ProductID + "&StockLevel=" + StockLevel, "SupplierStockLevelInfo", "left=300, top=300, width=400, height=200, resizable=yes, scrollbars=yes, status=yes")
}

function displaySupplierPickupWindow(app, supplierId) {
    window.open(app + "SupplierPickupInfo.aspx?sID=" + supplierId, "SupplierPiclupInfo", "left=300, top=300, width=400, height=200, resizable=yes, scrollbars=yes, status=yes")
}

