/*
About this script...
------------------------------------------------------------
Script name: orderform.js

Language: JavaScript

Created By:
ApplicationX (http://www.applicationx.net)
copyright 2000 - 2003 (except where otherwise indicated)

Function: Functions for ordering packages through website

------------------------------------------------------------
*/

function updateOrderProp(pkg, price, term, startup) {
	document.orderFrm.package.value = pkg;
	document.orderFrm.price.value = price;
	document.orderFrm.term.value = term;

	if (startup) {
		document.orderFrm.startup.value = startup;
	} else {
		document.orderFrm.startup.value = 0;
	}
}

