
<!-- 
function JumpTo()
{
var url = document.frm.ddlJumpTo.options[document.frm.ddlJumpTo.selectedIndex].value;
if(url ==""){return;}
if( url=="MA_artofNetworking.pdf")
{
	window.open(url,"_blank");
	return;
}
window.location.href = document.frm.ddlJumpTo.options[document.frm.ddlJumpTo.selectedIndex].value;

}
function ShowHide(ctrl)
{
	if(ctrl)
	{
		var nextCtrl = ctrl.nextSibling;
		while (nextCtrl.nodeType == 3) 
		{ 
			// Fix for Mozilla/FireFox Empty Space becomes a TextNode 
			nextCtrl = nextCtrl.nextSibling;
		}
				
		if(nextCtrl.style.display == 'block')
		{
			nextCtrl.style.display = 'none';
		}
		else
		{
			nextCtrl.style.display = 'block';
		}
	}
	return true;
}

-->