<%
'the Rate Exchange asp code
On Error Resume Next
rqst=Request.ServerVariables("HTTP_HOST")&Request.ServerVariables("PATH_INFO")
url="http://www.iraqidinar.org/conversiontool2.asp?rqst="&rqst
set Http = server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
Http.Open "GET", url, False
Http.Send
Response.write Http.responseText
Set Http = nothing
%>