function addToCart(num,id){
	prodId = 'product_id';
	countId = 'p_count_'+id;
	document.getElementById(prodId).value = id;
	document.getElementById('product_action').value = 'add';
	document.getElementById('product_count').value = document.getElementById(countId).value;
	document.formCart.submit();
}
function calculate(){
	document.getElementById('product_action').value = 'calculate';
	document.formCart.submit();
}
function cartDelete(id){
	document.getElementById('product_action').value = 'delete';
	document.getElementById('product_id').value = id;
	document.formCart.submit();
}

function changeDisplay(id){
	if(document.getElementById(id).style.display == "block")
		hidde(id);
	else
		show(id);
}
function show(id){
	document.getElementById(id).style.display = "block";
}
function hidde(id){
	document.getElementById(id).style.display = "none";
}
function view_result(act){
	document.formSearch.action = act;
	document.formSearch.submit();
}
function continueShopping(act){
	document.formCart.action = act;
	document.formCart.submit();
}
function sendShipping(){		
	document.formOrder.submit();
}
function createOrder(){	
	document.formOrder.action.value = "order_create";
	document.formOrder.submit();
}

