//--------------------------------------------------------------
//Redirect to Anchor after loading documentation
var currentAnchor = null;

function checkAnchor()
{
	currentAnchor = document.location.hash;
	location.href = currentAnchor;
}
//--------------------------------------------------------------
//Get the documentation for a specific product
	function getDocumentation(CATID, SUBCATID, PRD)
	{
		var parameters = "CATID=" + CATID +
						"&SUBCATID=" + SUBCATID + 
						"&PRD=" + PRD + "";
		$.ajax(
		{
			type: "GET",
			url: "/Products/Documentation.asp",
			data: parameters,
			dataType: "html",
			success: function(msg){
				document.getElementById("dvDoc_" + PRD).innerHTML = msg;
				if (document.location.hash != '')
				{
					$(document).ready(function()
					{
						checkAnchor();
					});
				}
			},
			error : function (request, error){
			}
		});
	}
//--------------------------------------------------------------
