<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eurojoe.com &#187; Fluid Converter</title>
	<atom:link href="http://www.eurojoe.com/category/conversion-calculators/fluid-converter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eurojoe.com</link>
	<description>Source for Europeans Living in the US</description>
	<lastBuildDate>Wed, 14 Jul 2010 05:03:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Fluid Converter</title>
		<link>http://www.eurojoe.com/2007/11/18/fluid-converter/</link>
		<comments>http://www.eurojoe.com/2007/11/18/fluid-converter/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 08:16:24 +0000</pubDate>
		<dc:creator>eurojoe</dc:creator>
				<category><![CDATA[Fluid Converter]]></category>

		<guid isPermaLink="false">http://eurojoe.com/2007/11/18/fluid-converter/</guid>
		<description><![CDATA[Convert  between these units: Teaspoon, Tablespoon, Fluid Ounce, Cup, U.S. Pint, U.K. Pint, Quart, Gallon, Liter, Milliliter]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">

// Length Converter script- By Bruce Zhang
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// Please keep this notice intact

var factors1 = new Array(1, 0.333, 0.16667, 0.02083, 0.0104167, 0.008676, 0.00521, 0.00130, 0.00493, 4.92999);
var factors2 = new Array(3, 1, 0.5, 0.0625, 0.03125, 0.026027, 0.015625, 0.0039063, 0.01479, 14.78999);
var factors3 = new Array(6, 2, 1, 0.125, 0.0625, 0.05205, 0.03125, 0.007813, 0.02958, 29.57997);
var factors4 = new Array(48, 16, 8, 1, 0.5, 0.4164281, 0.25, 0.0625, 0.23664, 236.63972);
var factors5 = new Array(96, 32, 16, 2, 1, 0.8328562, 0.5, 0.125, 0.47328, 473.27943);
var factors6 = new Array(115.266, 38.422, 19.211, 2.401375, 1.20069, 1, 0.60034, 0.150086, 0.56826, 568.2607);
var factors7 = new Array(192, 64, 32, 4, 2, 1.665712, 1, 0.25, 0.9466, 946.5589);
var factors8 = new Array(768, 256, 128, 16, 8, 6.66285, 4, 1, 3.78624, 3786.2355);
var factors9 = new Array(202.84, 67.61333, 33.80667, 4.22583, 2.11293, 1.75976, 1.05646, 0.2641, 1, 1000);
var factors10 = new Array(0.20284, 0.06761, 0.03381, 0.00423, 0.00211, 0.00176, 0.00106, 0.000264, 0.001, 1);

var factors = new Array(factors1,factors2,factors3,factors4,factors5,factors6,factors7,factors8,factors9,factors10);

function convert_unit()
{
	from_index = document.length_con.from_unit.selectedIndex;
	to_index = document.length_con.to_unit.selectedIndex;
	factor = factors[from_index][to_index];
	document.getElementById("formula").innerHTML = document.length_con.from_unit.options[document.length_con.from_unit.selectedIndex].text + " = " + factor + " " + document.length_con.to_unit.options[document.length_con.to_unit.selectedIndex].text;
	if(isNaN(document.length_con.from_value.value))
		document.getElementById("to_value").innerHTML = "Not a valid number.";
	else
		document.getElementById("to_value").innerHTML = factor * document.length_con.from_value.value;
}
</script></p>
<p>
<b>1</b> Select a fluid unit from the &#8220;From&#8221; drop down list and one from the &#8220;To&#8221; drop down list.<br />
<br /><b>2</b> Enter a numeric value, and click &#8220;To&#8221; button.</p>
<form name="length_con">
<table>
<tr>
<td>From </td>
<td>
<select name=from_unit onChange="convert_unit()";>
<option> Teaspoons</p>
<option> Tablespoons</p>
<option> Fluid ounces</p>
<option> Cups</p>
<option> US Pints</p>
<option> UK Pints</p>
<option> Quarts</p>
<option> Gallons</p>
<option> Liters<br />
			</select>
</td>
<td>  To </td>
<td>
<select name=to_unit onChange="convert_unit()";>
<option> Teaspoons</p>
<option> Tablespoons</p>
<option> Fluid ounces</p>
<option> Cups</p>
<option> US Pints</p>
<option> UK Pints</p>
<option> Quarts</p>
<option> Gallons</p>
<option> Liters<br />
			</select>
</td>
</tr>
<tr>
<td> </td>
<td colspan="3">
<div id="formula">centimeters = 1 centimeters</div>
</td>
</tr>
<tr>
<td colspan="4"> </td>
</tr>
<tr>
<td>Enter </td>
<td>
<input type="text" name="from_value" value="1" size="12" maxlength="12"></td>
<td>
<input type=button value="To" onClick="convert_unit()";> </td>
<td>
<div id="to_value">1</div>
</td>
</tr>
<tr>
<td>
<div align="center" style="font: normal 11px Arial">This free script provided by<br />
<a href="http://www.javascriptkit.com">JavaScript Kit</a></div>
</td>
</tr>
</table>
</form>
<p>[ad#wallchart]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eurojoe.com/2007/11/18/fluid-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
