File: D:/web/circ.itp/delivery.asp
<%Option Explicit%>
<!--#include file="dbfunctions.asp"-->
<!--#include file="apputils.asp"-->
<html>
<head>
<title>Delivery Details</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<%
Dim AType
AType = Request("type")
If AType = "P" or AType = "" Then
' AType, AValueHeading, AIncVat, AZeroAsFree
ShowDeliveryMatrix "P", "", False, True
End If
If AType = "W" or AType = "" Then
' AType, AValueHeading, AIncVat, AZeroAsFree
ShowDeliveryMatrix "W", "No. of Radiators", False, True
End If
%>
</body>
</html>