<%
Dim version
version = "all" ' "all" includes everything
' "products" includes only products
Dim style
style = "2" ' "0" Use your own stylesheet
' "1" Stylesheet with nav on the left
' "2" Stylesheet with nav on the top
Dim logo
logo = "us" ' "us" ShoreTel Authorized Reseller
' "eu" ShoreTel Authorised Partner
' Do not edit below this line
set req = createobject("WinHttp.WinHttpRequest.5.1")
set page = Request.QueryString("p")
req.Open "GET", "http://micro.shoretel.com/www/?v=" + version + "&s=" + style + "&l=" + logo + "&p=" + page, false
req.Send
%>
<%=req.ResponseText %>
|