function callShipment(pid , divid)
{		
	document.getElementById('pidID').value =pid;
	var form = document.Form;
	var enclosure = "";
	
	obj = form.enclosure;
	
	if(obj[0].checked || obj[1].checked)
	{
		if(obj[0].checked)
		{
			enclosure = obj[0].value;
			
		}
		if(obj[1].checked)
		{
			enclosure = obj[1].value;
		}
	}
	
	else if(!obj[0].checked && !obj[1].checked)
	{
		alert('Please select the Enclosure Unit');
		obj[0].focus();
		return false;
	}

	
	
	//obj = form.all('pquantity');
	obj = form.pquantity;
	qty = obj.value;
	if(qty=="")
		obj.value=1;
	qty = obj.value;
	
	
	var strVariables ='action=rectangular_totPrice&qty='+ qty+"&enclosure="+enclosure+"&pid="+pid;
	
		makeRequest('ajax_function.php?'+strVariables, divid);
	//}
}
