

	function linkDetails(
		lLink_ID,
		lLinkType_ID
	) {
	
		// Is this a 'Deal' type link?
		if (lLinkType_ID = 2) {
		
			// -------------------- Open Popup Details Window --------------------
			
			// Build the URL
			sWinURL = 'popup_LinkTypeDetails.cfm' + 
				'?LinkType_ID=' + lLinkType_ID + 
				'&Link_ID=' + lLink_ID;
			
			// Build features list
			sWinFeatures = 'screenX=0; screenY=0; top=0; left=0; width=400; height=100; status=false; ' + 
				'menubar=nfalse; toolbar=false; scrollbars=false';
			
			// Open the popup
			setTimeout("objPopUpWin = window.open(sWinURL, 'winDetails', sWinFeatures);",5000);
		
		}
	
	}

