<!-- THREE STEPS TO INSTALL Currency Converter (using updated currency exchange rates):

  1.  Copy the code into a new file, save as quickcalcform.css
  2.  Add the script source tag to the HEAD of your HTML document
  3.  Add the last code into the BODY of your HTML document  -->


<!-- STEP ONE: Copy this code into a new file, save as quickcalcform.css  -->

<!-- Source Site:  http://currencysource.com -->

.graybox {
	border: solid 1px gray;
}

#graybox {
	border: solid 1px gray;
}

.rateText {  
    font-family: Arial, Helvetica, sans-serif; font-size: 0.8em; color: #333399; text-align: center;
}

#smlink {
	font-size: .6em;
	color: #dedede;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
}

#smlink a:link,#smlink a:visited{
color: #7e7e7e; /*Was #dedede.*/
text-decoration: none; }

#smlink a:hover {
color: #7e7e7e; 
text-decoration: underline}



<!-- STEP TWO: Paste this code into the HEAD of your HTML document  -->


<link rel="stylesheet" type="text/css" href="quickcalcform.css">
<script type="text/javascript" language="JavaScript" src="http://www.currencysource.com/scripts/calculator.js"></script>


<!-- STEP THREE: Copy this code into the BODY of your HTML document  -->


<script type="text/javascript" language="JavaScript" src="http://www.currencysource.com/scripts/quickcalcform.js"></script>


<!-- That's it! Your site visitors now have a 'live' Currency Converter! -->
                    

