		
			function addToBriefcase(link,type, title)
			{
			
				var h = 400;
				var t = 100 ;
				var w = 450;
				var l = 100 ;

				document.getElementById('sdadd').value = "1";
				document.getElementById('sdlink').value = link;
				document.getElementById('sdtitle').value = title;
				document.getElementById('sdtype').value = type;
				var sd = window.open("_portal/download_manager_popup.asp","smartdownload","scrollbars=yes,resizable=yes,status=yes,toolbar=no,location=no,top=" + t + ",height=" + h + ",left=" + l + ",width=" + w);
				if (sd != null)
				{
					sd.focus();

					document.getElementById('sdform').submit();
				
				}
			}
			function showBriefcase()
			{
				
				var h = 400;
				var t = 100 ;
				var w = 450;
				var l = 100 ;

				var sd = window.open("_portal/download_manager_popup.asp","smartdownload","scrollbars=yes,resizable=yes,status=yes,toolbar=no,location=no,top=" + t + ",height=" + h + ",left=" + l + ",width=" + w);
				if (sd != null)
				{
					sd.focus();
				}
			}