Definition : teleradiology
Main Entry: tele•ra•di•ol•o•gy
Pronunciation: "tel-&-"rAd-E-'äl-&-jE
Function: noun
Inflected Form: plural -gies
: radiology concerned with the transmission of digitized medical images (as X rays, CT, MRI scans and sonograms) over electronic networks and with the interpretation of the transmitted images for diagnostic purposes
 
 
<% if request.form("check") <> 1 then %>
Contact Form
First Name *
Last Name *
Title
Company name *
Address *
City *
State *
Zip
Country
Web site
Daytime phone *
Email address *
Where did you
hear about us (2 lines)
Comments or questions

 

<% else youremail = "neerav.patel@scanris.com" subject = "Contact" message = request.form("fname") & ", " & request.form("lname") & ", " & request.form("title") & ", " & request.form("company") & ", " & request.form("Address") & ", " & request.form("city") & ", " & request.form("state") & ", " & request.form("zip") & ", " & request.form("country") & ", " & request.form("web") & ", " & request.form("phone") & ", " & request.form("email") & ", " & request.form("where") & ", " & request.form("comment") Set myMail=CreateObject("CDO.Message") myMail.Subject=subject myMail.From=request.form("email") myMail.To=youremail myMail.TextBody=message myMail.Send response.write ("Thank you, your email has been sent.") End If %>