//----------------------------------------------------------------
// Popup Message		Src_popupMsg.js
// ----------------------------------------------------------------
//	Version		Date		Author		Notes
//	-------		----------	----------	----------------------------
//	1.0.0		05/17/2005	TRW	
// ----------------------------------------------------------------
// Will display a message if Right Mouse Click
// Will Redirect if Left Mouse Click
// ----------------------------------------------------------------
// This Include code goes in the in the <HEAD>
// Then in the <BODY> add the following line:
//		onMouseDown="popupMsg('To download ...')"
//
//	<script language="JavaScript" type="text/javascript" src="/GlobalIncludes/ClientSide/Src_popupMsg.js"></script>
// ----------------------------------------------------------------
<!--
	function popupMsg(theMsg,e,theRedirect){
		if (parseInt(navigator.appVersion)>3) {
			var clickType=1;
			if (navigator.appName=="Netscape") clickType=e.which;
			else clickType=event.button;
			
			if (theRedirect!="noredirect"){
				if (clickType==1) window.location=theRedirect;
				}
			if (clickType!=1) alert(theMsg);
		}
		return true;
	}
//-->
//----------------------------------------------------------------
