var aud;
var enc;
var time;
var GB;
var plan;

function checkPlan(){
	if(GB<=25){return "We recommend the <strong>Upstream 25</strong> plan. This plan is available for <a href=\"home.php?page=windows-on-demand-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows On-Demand</a>, <a href=\"home.php?page=windows-live-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows Live</a>, and <a href=\"home.php?page=flash-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Flash streaming</a>. <br><br> If you have additional questions, please contact an UpStream Networks streaming representative at 888-415-2777 or fill out a contact form.";}
	
	if(GB>25&&GB<=100){return "We recommend the <strong>Upstream 100</strong> plan. This plan is available for <a href=\"home.php?page=windows-on-demand-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows On-Demand</a>, <a href=\"home.php?page=windows-live-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows Live</a>, and <a href=\"home.php?page=flash-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Flash streaming</a>. <br><br> If you have additional questions, please contact an UpStream Networks streaming representative at 888-415-2777 or fill out a contact form.";}
	
	if(GB>100&&GB<=200){return("We recommend the <strong>Upstream 200</strong> plan. This plan is available for <a href=\"home.php?page=windows-on-demand-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows On-Demand</a>, <a href=\"home.php?page=windows-live-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows Live</a>, and <a href=\"home.php?page=flash-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Flash streaming</a>. <br><br> If you have additional questions, please contact an UpStream Networks streaming representative at 888-415-2777 or fill out a contact form.");}
	
	if(GB>200&&GB<=500){return("We recommend the <strong>Upstream 500</strong> plan. This plan is available for <a href=\"home.php?page=windows-on-demand-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows On-Demand</a>, <a href=\"home.php?page=windows-live-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Windows Live</a>, and <a href=\"home.php?page=flash-streaming\"  target=\"mainwin\" onclick=\"return loadit(this.href)\">Flash streaming</a>. <br><br> If you have additional questions, please contact an UpStream Networks streaming representative at 888-415-2777 or fill out a contact form.");}
	
	else {return("Please contact a representative at 888-415-2777 to discuss your needs.");}
}

function calculate() {
   	aud = document.getElementById("audSize").value;
	enc = document.getElementById("encRate").value;
	time = document.getElementById("eventLength").value;
	GB = (aud*enc*time*60)/8000000;
	document.getElementById("results").innerHTML = checkPlan();
	}