/*
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
//	FUNCTION	getProduct()
//	DESC		Ajax call to PHP-script that displays all products below specific product
//	PARAMS		displayTag		::	ID of target/tag to display categories within
//				productID		::	Specific category
//				parentID		::	Specific category that is parent to the category
//				langID			::	Specific language
//				activeParentID	::	Parent to the opened category
//	AUTHOR		Sune Lundby [SL]
//	DATE		July 12th 2006
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
function getProduct(displayTag, productID, parentID, langID, activeParentID) {

	var randNum = Math.random()*370;
	new Ajax.Updater(
					$(displayTag),
					myBasePath + '_ajax/_scripts/get_product.php?rand=' + randNum, {
					method: 'get',
					parameters: 'productID=' + productID +
								'&parentID=' + parentID +
								'&langID=' + langID +
								'&activeParentID=' + activeParentID,
					asynchronous: true,
					evalScripts: true }
					);

} // END FUNCTION getProduct()
//:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

