// JavaScript Document

var largerlicense = "Please contact us at sales@cyberleader.net for pricing of license packages over 150 Clients."



function CalculatePrice(){

	var originalqty = document.form1.clients.options[document.form1.clients.selectedIndex].value
	if ((document.form1.clients.options[document.form1.clients.selectedIndex].value >= 1) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 10)){
		
		calculation = 100 + (originalqty * 10);
		document.form1.result.value = "$" + calculation;
		}
	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 10) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 30)){

		calculation = 200 + ((originalqty - 10 ) * 14);
		document.form1.result.value = "$" + calculation;	
		}

	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 30) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 40)){

		calculation = 480 + ((originalqty - 30 ) * 9);
		document.form1.result.value = "$" + calculation;	
		}

	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 40) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 50)){

		calculation = 570 + ((originalqty - 40 ) * 7);
		document.form1.result.value = "$" + calculation;	
		}

	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 50) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 200)){

		calculation = 640 + ((originalqty - 50 ) * 7);
		document.form1.result.value = "$" + calculation;
		}
}

function Order(){

	var originalqty = document.form1.clients.options[document.form1.clients.selectedIndex].value
	if ((document.form1.clients.options[document.form1.clients.selectedIndex].value >= 1) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 10)){
		price = 100 + (originalqty * 10);
		price2 = Math.round((price/3)*10)/10;
		}
	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 10) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 30)){
		price = 200 + ((originalqty - 10 ) * 14);
		price2 = Math.round((price/3)*10)/10;
		}
	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 30) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 40)){
		price = 480 + ((originalqty - 30 ) * 9);
		price2 = Math.round((price/3)*10)/10;
		}
	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 40) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 50)){
		price = 570 + ((originalqty - 40 ) * 7);
		price2 = Math.round((price/3)*10)/10;
		}
	else if ((document.form1.clients.options[document.form1.clients.selectedIndex].value > 50) && (document.form1.clients.options[document.form1.clients.selectedIndex].value <= 200)){
		price = 640 + ((originalqty - 50 ) * 7);
		price2 = Math.round((price/3)*10)/10;
		}
		
	if ((document.form2.R1[0].checked) && (document.form1.clients.options[document.form1.clients.selectedIndex].value != "")){
		window.location.href="https://secure.shareit.com/shareit/checkout.html?PRODUCT[300072085]=1&PRODUCTPRICE[300072085]="+price+".00USD%2CN";
		}
	if ((document.form2.R1[1].checked) && (document.form1.clients.options[document.form1.clients.selectedIndex].value != "")){
		window.location.href="https://www.paypal.com/xclick/business=support%40cyberleader.net&item_name=CyberLeader+Software+%28Lifetime+License%29&amount="+price+".00&no_shipping=1&no_note=1&currency_code=USD";
		}
	if ((document.form2.R1[2].checked) && (document.form1.clients.options[document.form1.clients.selectedIndex].value != "")){
		window.location.href="https://www.paypal.com/subscriptions/business=support%40cyberleader.net&item_name=CyberLeader+Software+%28Lifetime+License%29&no_shipping=1&no_note=1&currency_code=USD&a3="+price2+"&p3=1&t3=M&src=1&sra=1&srt=3";
		}
	if ((document.form2.R1[3].checked) && (document.form1.clients.options[document.form1.clients.selectedIndex].value != "")){
		alert("Please contact us at sales@cyberleader.net to receive information on how to send us money.")
		}		
}
	 
function About(){
 if (document.form2.R1[0].checked){ 
		 window.open('creditcard.htm','','width=680,height=290,left=0,top=0');
		}
 if (document.form2.R1[1].checked){ 
		 window.open('paypal.htm','','width=680,height=110,left=0,top=0');
		}
 if (document.form2.R1[2].checked){ 
		 window.open('paypal3.htm','','width=680,height=110,left=0,top=0');
		}
 if (document.form2.R1[3].checked){ 
		 window.open('wu.htm','','width=680,height=60,left=0,top=0');
		}
}