/*
'///////////////////////////////////////
' MODULE NAME:  imageControl.js

' COPYRIGHT:  Copyright (c) 1997-2003 
' MBI eSystem Version 03.2
' Meier Brothers Inc.  All Rights Reserved.

' CREATION DATE: 3/28/03
 
' LAST MODIFIED DATE: 4/7/03
'///////////////////////////////////////
*/

function imageClick(e,type,url){
	var msg;
	msg = "Sorry, right click on images has been disabled.";
	// Images that are getting enlarged
	if ((type == 'enlarge'))
	{
		// Netscape just needs to be pushed to the popup image
		if (navigator.appName == 'Netscape' && e.which == 3)
		{
			if (type == 'enlarge')
			{
				alert(msg); 
			}
		}
		// IE needs to have an alert and then get pushed to the popup to prevent the menu from coming up
		else if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2)
		{
			if (type == 'enlarge')
			{ 
				alert(msg);
			}
		}
	}
}
