function updateMaterial(matID, returnURL, template) {
	new Ajax.Request('/modules/textileProductMaterials/module_proc.php5?action=updateMaterial&module_name=textileProduct&matid='+matID+'&template='+template+'&url='+returnURL,
	{
	  method:'post',
	  onLoading: function() {
	  	$('ajax_info').style.display = 'block';
	  },
	  onSuccess: function(transport){
	  	var response = transport.responseText.evalJSON(true);
	  	//alert(response);
	  	$('materialData').innerHTML = response.matData;
	  	$('materialMainPic').innerHTML = response.mainImage;
	  	$('ajax_info').style.display = 'none';
	  	$('addMaterialToCart').name=response.matId;
	  	currentMaterial = matID;
	  	//alert(response);
	  },
	  onFailure: function() {
	  	alert('Something went wrong...');
	  }
	});
}

function go2product(domain, mid, cname, cid) {
	location.href='http://'+domain+mid+'/'+cname+'/'+cid+'/v'+currentMaterial+'/';
}