function newWindow(target) {
/*
	I could use HTML parametr target="_blank"
	(xhtml1-strict.dtd says that it is not allowed),
	so I've solved it with this function 
*/
	window.open(target, "_blank", "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes");
	return false; /* ..keep it here! */
}

function addMoreItems() {
	alert('Testing: Add More Items.');
/*
	function which add new raw as a tbody's child (tbody#orderForm)
*/
	return false;  /* this is only for testing... */
}
function addToCart() {
	alert('Testing: Add To Cart.');
/*
	here will be probably something like:
	submit();
*/
	return false;  /* this is only for testing... */
}
function continueShopping() {
	alert('Testing: Continue Shopping');
/*
	return somewhere...
*/
	return false;  /* this is only for testing... */
}
function updateCart() {
	alert('Testing: Update Cart');
/*
	At first you have to change "form.action"
	submit();
*/
	return false;  /* this is only for testing... */
}
function calculateShipping() {
/*
	submit();
*/
	alert('Testing: Calculate Shipping');
	return false;  /* this is only for testing... */
}
function beginCheckout() {
/*
	submit();
*/
	alert('Testing: Begin Checkout');
	return false;  /* this is only for testing... */
}
function goBack() {
/*
	go somewhere...
*/
	alert('Testing: Go back');
	return false;  /* this is only for testing... */
}
function continueCheckout() {
/*
	submit();
*/
	alert('Testing: Continue Checkout');
	return false;  /* this is only for testing... */
}

function sendOrder() {
/*
	submit();
*/
	alert('Testing: Send Order');
	return false;  /* this is only for testing... */
}

