// JavaScript Document

var timecost = 0;
var presentcost = 0;
var prcost = 0;
var adminfee = 0;
var basecost = 0;

function running_time_calc ()
{
if (document.price_me.running_time.value == 0)
	{
	document.price_me.time_cost.value = "$" +  0.00;
	timecost = 0.00;
	}
if (document.price_me.running_time.value == 1)
	{
	document.price_me.time_cost.value = "$" +  1.00;
	timecost = 1.00;
	}
if (document.price_me.running_time.value == 2)
	{
	document.price_me.time_cost.value = "$" + 7.00;
	timecost = 7.00;
	}
if (document.price_me.running_time.value == 3)
	{
	document.price_me.time_cost.value = "$" +  14.00;
	timecost = 14.00;
	}
if (document.price_me.running_time.value == 4)
	{
	document.price_me.time_cost.value = "$" +  30.00;
	timecost = 30.00;
	}
if (document.price_me.running_time.value == 5)
	{
	document.price_me.time_cost.value = "$" +  90.00;
	timecost = 90.00;
	}	
if (document.price_me.running_time.value == 6)
	{
	document.price_me.time_cost.value = "$" +  180.00;
	timecost = 180.00;
	}
if (document.price_me.running_time.value == 7)
	{
	document.price_me.time_cost.value = "$" + 365.00;
	timecost = 365.00;
	}
	basecost = timecost + presentcost + prcost;
	adminfee = basecost * .04;
	document.price_me.quote_cost.value = adminfee + basecost;
	return true;
}


function presented_to_calc () 
{
if (document.price_me.presented_to.value == 0)
	{
	document.price_me.present_cost.value = "$" + 0.00;
	presentcost = 0.00;
	}
if (document.price_me.presented_to.value == 1)
	{
	document.price_me.present_cost.value = "$" + 30.00;
	presentcost = 30.00;
	}
if (document.price_me.presented_to.value == 2)
	{
	document.price_me.present_cost.value = "$" + 35.00;
	presentcost = 35.00;
	}	
if (document.price_me.presented_to.value == 3)
	{
	document.price_me.present_cost.value = "$" + 40.00;
	presentcost = 40.00;
	}
if (document.price_me.presented_to.value == 4)
	{
	document.price_me.present_cost.value = "$" + 45.00;
	presentcost = 45.00;
	}	
if (document.price_me.presented_to.value == 5)
	{
	document.price_me.present_cost.value = "$" + 50.00;
	presentcost = 50.00;
	}	
if (document.price_me.presented_to.value == 6)
	{
	document.price_me.present_cost.value = "$" + 55.00;
	presentcost = 55.00;
	}	
if (document.price_me.presented_to.value == 7)
	{
	document.price_me.present_cost.value = "$" + 60.00;
	presentcost = 60.00;
	}	
	basecost = timecost + presentcost + prcost;
	adminfee = basecost * .04;
	document.price_me.quote_cost.value = adminfee + basecost;
	return true;
}

function pr_4_calc ()
{
if (document.price_me.Pr_4.value == 0)
	{
	document.price_me.PR_cost.value = "$" + 0.00;
	prcost = 0.00;
	}	
if (document.price_me.Pr_4.value == 1)
	{
	document.price_me.PR_cost.value = "$" + 10.00;
	prcost = 10.00;
	}	
if (document.price_me.Pr_4.value == 2)
	{
	document.price_me.PR_cost.value = "$" + 15.00;
	prcost = 15.00;
	}		
if (document.price_me.Pr_4.value == 3)
	{
	document.price_me.PR_cost.value = "$" + 20.00;
	prcost = 20.00;
	}	
if (document.price_me.Pr_4.value == 4)
	{
	document.price_me.PR_cost.value = "$" + 25.00;
	prcost = 25.00;
	}	
if (document.price_me.Pr_4.value == 5)
	{
	document.price_me.PR_cost.value = "$" + 30.00;
	prcost = 30.00;
	}		
if (document.price_me.Pr_4.value == 6)
	{
	document.price_me.PR_cost.value = "$" + 50.00;
	prcost = 50.00;
	}		
if (document.price_me.Pr_4.value == 7)
	{
	document.price_me.PR_cost.value = "$" + 75.00;
	prcost = 75.00;
	}		
if (document.price_me.Pr_4.value == 8)
	{
	document.price_me.PR_cost.value = "$" + 180.00;
	prcost = 180.00;
	}		
if (document.price_me.Pr_4.value == 9)
	{
	document.price_me.PR_cost.value = "$" + 190.00;
	prcost = 190.00;
	}		
if (document.price_me.Pr_4.value == 10)
	{
	document.price_me.PR_cost.value = "$" + 400.00;
	prcost = 400.00;
	}		
if (document.price_me.Pr_4.value == 11)
	{
	document.price_me.PR_cost.value = "$" + 50.00;
	prcost = 50.00;
	}		
if (document.price_me.Pr_4.value == 12)
	{
	document.price_me.PR_cost.value = "$" + 100.00;
	prcost = 100.00;
	}		
if (document.price_me.Pr_4.value == 13)
	{
	document.price_me.PR_cost.value = "$" + 25.00;
	prcost = 25.00;
	}			
	basecost = timecost + presentcost + prcost;
	adminfee = basecost * .04;
	document.price_me.quote_cost.value = adminfee + basecost;
	return true;	
}