


/***** Show Product Spec Popup *****/
function showPopupSpec(obj){ //pass in the div id name
		$('.spec_category_prod_desc').css({display:'none'});
			$(obj).show();
		
	}   
	
function hidePopupSpec(obj){ //pass in the div id name
		
			$(obj).hide();
		
	}
