// JavaScript Document
	
	function packFormSubmit(packid){
		
		document.getElementById("packid").value=packid;
		document.packForm.submit();
	}

	function countPrice1(){
		var pricePerDay=19.99;
		if(trim(document.getElementById("days1").value)==""){
			alert("Pleast select days.");
			return false;
		}
		var days=parseInt(trim(document.getElementById("days1").value));
		document.getElementById("time1").value=days;
		document.getElementById("price1").value=formatNumber(days*pricePerDay);
	}
	
	function countPrice2(){
		var pricePerDay=13.99;
		if(trim(document.getElementById("days2").value)==""){
			alert("Pleast select days.");
			return false;
		}
		var days=parseInt(trim(document.getElementById("days2").value));
		document.getElementById("time2").value=days;
		document.getElementById("price2").value=formatNumber(days*pricePerDay);
	}
	
	function pvpFormSubmit1(){
		
		if(trim(document.getElementById("days1").value)==""){
			alert("Pleast select days.");
			return false;
		}
		
		document.pvpForm1.submit();
	}
	
	function pvpFormSubmit2(){
		
		if(trim(document.getElementById("days2").value)==""){
			alert("Pleast select days.");
			return false;
		}
		
		document.pvpForm2.submit();
	}