<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Thu, 24 May 2012 03:34:17 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>Blood Alcohol Calculator</title><link>http://dui-help.com/blood-alcohol-calculator/</link><description></description><lastBuildDate>Sat, 08 Jan 2011 19:50:02 +0000</lastBuildDate><copyright></copyright><language>en-US</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><item><title>Blood Alcohol Concentration (BAC)</title><dc:creator>gotDUIHelp.com Staff</dc:creator><pubDate>Mon, 18 Oct 2010 07:26:41 +0000</pubDate><link>http://dui-help.com/blood-alcohol-calculator/2010/10/18/blood-alcohol-concentration-bac.html</link><guid isPermaLink="false">369738:3989745:4168392</guid><description><![CDATA[<table border="0" cellspacing="0" cellpadding="8" width="100%">
<tbody>
<tr>
<td><a name="content"></a><span class="full-image-float-right ssNonEditable"><span><img src="http://dui-help.com/storage/jmd-youtube.jpg?__SQUARESPACE_CACHEVERSION=1294516190656" alt="" /></span><span class="thumbnail-caption" style="width: 120px;">"You want to stay below .05% if operating - exceeding that amount can place you at risk since your reactions are slowed causing you to take evasive actions not quickly enough. Drive carefully and arrive safe."</span></span>All States define legal intoxication for purposes of driving as having a BAC of 0.08 or greater, in most cases. But alcohol may affect driving skills at BACs even lower.<br /><br />
<h3><strong><a name="use">Using the BAC calculator</a></strong></h3>
<p>Use this calculator to instantly compute your estimated             blood/breath alcohol concentration.</p>
<ul>
<li>Keep in mind the results generated are estimates.</li>
<li>The primary purpose is to provide information about the                 responsible use of alcohol.</li>
</ul>
<p><strong>Instructions:</strong>&nbsp; Please select weight, drinks consumed, time period       and gender and click the "compute your BAC" button:</p>
<div>
<table border="0" cellspacing="1" cellpadding="2" bgcolor="#ffffff">
<tbody>
<tr>
<td bgcolor="#ffffff"><form> 
<table border="0" cellspacing="1" cellpadding="2" width="100%">
<tbody>
<tr>
<td>Weight:</td>
<td><select name="weight"> <option value="null">Select One </option><option value="100">100 </option><option value="110">110 </option><option value="120">120 </option><option value="130">130 </option><option value="140">140 </option><option value="150">150 </option><option value="160">160 </option><option value="170">170 </option><option value="180">180 </option><option value="190">190 </option><option value="200">200 </option><option value="210">210 </option><option value="220">220 </option><option value="230">230 </option><option value="240">240 </option><option value="250">250 </option><option value="260">260 </option><option value="270">270 </option><option value="280">280 </option><option value="290">290 </option><option value="300">300 </option></select></td>
<td><span class="smalltext"> (pounds)</span></td>
</tr>
<tr>
<td>Drinks consumed:</td>
<td><select name="drinks"> <option value="null">Select One </option><option value="12">1 </option><option value="24">2 </option><option value="36">3 </option><option value="48">4 </option><option value="60">5 </option><option value="72">6 </option><option value="84">7 </option><option value="96">8 </option><option value="108">9 </option><option value="120">10 </option></select></td>
<td><span class="smalltext">(12 oz. beer or equivalent)</span></td>
</tr>
<tr>
<td>Over time period:</td>
<td><select name="time"> <option value="null">Select One </option><option value="1">1 </option><option value="2">2 </option><option value="3">3 </option><option value="4">4 </option><option value="5">5 </option><option value="6">6 </option></select></td>
<td><span class="smalltext"> (hours)</span></td>
</tr>
<tr>
<td>Gender:</td>
<td><select name="gender"> <option value="null">Select One </option><option value="woman">Female </option><option value="male">Male </option></select></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<h4>Your BAC will be:</h4>
</td>
<td colspan="2">
<p><input style="background-color: #ffffff; border-style: solid; border-color: #000066; font-weight: bold; text-align: center;" name="average" size="16" type="text" /> <a href="#disclaimer"><span class="smalltext">Disclaimer</span></a></p>
</td>
</tr>
<tr>
<td colspan="3" align="center"><input style="background-color: #c9c9e7; color: #000000;" onclick="computeIt(form)" name="compute" type="button" value="Compute your BAC" /> <strong><input style="background-color: #c9c9e7; color: #000000;" name="reset" type="reset" value="Clear" /> </strong></td>
</tr>
</tbody>
</table>
<script LANGUAGE="JavaScript"> 
<!-- Hide from older browsers 
 
 
function computeIt(form) { 
 
var lbs = form.weight.options[form.weight.selectedIndex].value; 
var numLbs = new Number(lbs); 
 
var drinks = form.drinks.options[form.drinks.selectedIndex].value; 
var numDrinks = new Number(drinks); 
 
var alco = numDrinks*.045; 
var alcohol = new Number(alco); 
 
var hours = form.time.options[form.time.selectedIndex].value; 
var numHours = new Number(hours); 
 
var metabol = numHours*.012; 
var metabolism = new Number(metabol); 


if (form.gender.options[form.gender.selectedIndex].value == "male") { 
        gendervalue = ".58"; 
        } else { 
                gendervalue = ".49"; 
                }
                 
       if (form.weight.options[form.weight.selectedIndex].value == "null") 
      { 
       form.average.value = " ";
       alert("Please select a weight")
      
      }  
      
      
      
       if (form.drinks.options[form.drinks.selectedIndex].value == "null")
      { 
       
       form.average.value = " ";
       alert("Please select number of drinks")
       
      } 
      
       if (form.time.options[form.time.selectedIndex].value == "null")
      { 
       form.average.value = " ";
       alert("Please enter number of hours")
       
      }
                   
       if (form.gender.options[form.gender.selectedIndex].value == "null")
      { 
       
       form.average.value = " ";
       gendervalue = null;
       alert("Please enter gender")
       
      }


            
                
                
var numSex = new Number(gendervalue); 
 
 
var weight = numLbs/2.2046; 
var lbs = new Number(weight); 
 
var water = lbs*numSex; 
var bodywater = new Number(water); 
 
var millwater = bodywater*1000; 
var milliliters = new Number(millwater); 
 
var oz = 23.36/milliliters; 
var ounces = new Number(oz); 
 
var gram = ounces*.806; 
var grams = new Number(gram); 
 
var gramsmill = grams*100; 
var bac0 = new Number(gramsmill); 
 
var bac1 = bac0*alcohol; 
var bac2 = new Number(bac1); 
 
var bac3 = bac2-metabolism; 
if (bac3 < 0) { 
        var result = "0.000"; 
} 
var bac4 = bac3 + ""; 
var result = bac4.substring(0,5); 


<!-- code for various results -->
if (result >= 0.08){
	 form.average.value = result; 
	 document.getElementById('average').style.color = 'red'
	}
	
	else { form.average.value = result;  
	 document.getElementById('average').style.color = 'black'
	}


if (result <= 0)

	{
		form.average.value = result;
		document.getElementById('average').value = "Negligible amount"
	}
	 

if (result == "NaN")
	{
		form.average.value = result;
		document.getElementById('average').style.color = 'white'
	}


if (result == "Infin")
	{
		form.average.value = result;
		document.getElementById('average').style.color = 'white'
	}



}

-->

</script> </form></td>
</tr>
</tbody>
</table>
</div>
<p class="caption">&nbsp;</p>
<p class="caption">This BAC calculator is             "JavaScript-based" and your browser will need JavaScript             enabled to work. This calculator may not work with some older             browsers that do not support JavaScript.</p>
<h3><strong><a name="affect">What can affect your BAC?</a></strong></h3>
<ul>
<li>How much alcohol you drink.</li>
<li>How fast you drink. In general, the quicker you drink, the                 higher your peak BAC will be.</li>
<li>Body size. Large people tend to reach lower BACs than smaller                 people, given the same amount of alcohol.</li>
<li>Food in your stomach. When there is food in your stomach,                 alcohol is absorbed more slowly into the blood stream. The BAC                 rises more rapidly when you drink on an empty stomach, because                 there is no food in which to dilute the alcohol.</li>
<li>Type of mixer used. Water and fruit juices mixed with alcohol                 may slow the absorption process, while carbonated beverages may                 speed it up.</li>
<li>Gender differences.                    
<ul>
<li>Women reach higher BACs faster because they have less                     water in their bodies and more adipose tissue (fat), which                     is not easily penetrated by alcohol.</li>
<li>A man and a woman, with all other factors being equal,                     both drinking the same amount of alcohol, will have                     different BAC levels. Hers will be higher.</li>
</ul>
</li>
</ul>
<h3><strong><a name="disclaimer">Disclaimer</a></strong></h3>
<p>Your actual BAC is dependent on many complex factors, including             your emotional and physical condition and health, and what you've             recently ingested (including food, water, medications and other             drugs).</p>
<ul>
<li>No blood/breath alcohol calculator is 100% accurate.</li>
<li>The best that can be done is a rough estimation of your BAC                 level.</li>
</ul>
<p><strong>You should not consider this to be a guideline for how much             you can drink and still drive responsibly, or avoid being arrested!             The best policy is don't drink and drive. Period.</strong></p>
<p>NOTE: The basic formula for estimating a person's blood/breath             alcohol concentration comes from the <a href="http://www.nhtsa.dot.gov/"> National Highway Traffic Safety             Administration</a>.</p>
</td>
</tr>
</tbody>
</table>]]></description><wfw:commentRss>http://dui-help.com/blood-alcohol-calculator/rss-comments-entry-4168392.xml</wfw:commentRss></item></channel></rss>
