<!--
		var specialcase = ((navigator.userAgent.indexOf('Mac') != -1) || document.all)
		var flag = 0;
		var msg = 'This image is protected by copyright.\nWe kindly request that you not copy it.';
		var x,y,x1,y1,copyAttempt;
		var i, counter
		function init()
		{
		//	if (document.images(0).src.length==0){
		//		document.images(0).src="//localhost/BYN/images/logo.jpg"
		//	//	document.frmCard.elements(0).value = document.images(0).src
		//	}			
			PreLoad();
			if (!(document.getElementById || document.all || document.layers)) return;
			if (specialcase && document.layers)
			{
				document.captureEvents(Event.MOUSEMOVE);
				document.onmousemove = special;
			}
			for (i=0;i<document.images.length;i++)
			{
				document.images[i].onmousedown = checkIt;
				document.images[i].onmouseup = function() {return false};
				if (specialcase)
				{
					document.images[i].onmousemove = special;
					document.images[i].onclick = clearIt;
				}
			}
			window.document.images(1).src = "images/card_lg.jpg"
			window.document.frmMain.elements(1).value = "images/card_lg.jpg"
		}

		imgLarge = new Image();
		arJerksSrc = new Array();
		arFriendsSrc = new Array();
		arLuvasSrc = new Array();
		arJerksList = new Array();
		arFriendsList = new Array();
		arLuvasList = new Array();
		
		ver4 = (document.layers || document.all) ? 1 : 0;

		arRowCt = new Array(4);
		for (i=1;i<4;i++){
			arRowCt[i] = new Array(3);
		}

		function PreLoad(){		
			imgLarge.src = "images/card_lg.JPG";
			arRowCt[1][1]=1;
			arRowCt[1][2]="Jerks";
			arRowCt[2][1]=1;
			arRowCt[2][2]="Friends";
			arRowCt[3][1]=1;
			arRowCt[3][2]="Luvas";
			if (document.images) {
				for (i=1;i<12;i++) {
					arJerksSrc[i] = "cards/jerks/jerks" + i;
				}
				for (i=1;i<12;i++) {
					arFriendsSrc[i] = "cards/friends/friends" + i;
				}
				for (i=1;i<12;i++) {
					arLuvasSrc[i] = "cards/luvas/luvas" + i;
				}

				
				arList = new Array(4);
				arList[1] = new Array(12);
				for (counter in arJerksSrc) {
					arList[1][counter] = new Image();
					arList[1][counter].src = arJerksSrc[counter];
				}
				arList[2] = new Array(12);
				for (counter in arFriendsSrc) {
					arList[2][counter] = new Image();
					arList[2][counter].src = arFriendsSrc[counter];
				}
				arList[3] = new Array(12);
				for (counter in arLuvasSrc) {
					arList[3][counter] = new Image();
					arList[3][counter].src = arLuvasSrc[counter];
				}
			}
		}

		function checkIt(e)
		{
			copyAttempt = 0;
			if (window.Event)
			{
				x = e.screenX;
				y = e.screenY;
				theButt = (e.which == 3);
			}
			else
			{
				x = window.event.clientX;
				y = window.event.clientY;
				theButt = (window.event.button == 2);
			}
			if (theButt)
			{
				copyAttempt = 1;
				flag = 0;
				alert(msg);
				return false; // NN4 only
			}
			if (specialcase) flag = 1;
			return false;
		}

		function special(e)
		{
			theObj = '';
			if (window.Event)
			{
				x1 = e.screenX;
				y1 = e.screenY;
				if (e.target.parentNode) theObj = e.target.parentNode.tagName;
			}
			else
			{
				x1 = window.event.clientX;
				y1 = window.event.clientY;
				theObj = window.event.srcElement.parentElement.tagName;
			}
			var isLink = (theObj == 'A');
			if (flag && (!isLink || ((Math.abs(x-x1) > 10) || (Math.abs(y-y1) > 10))))
			{
				copyAttempt = 1;
				flag = 0;
				alert(msg);
				return false;
			}
		}

		function clearIt()
		{
			flag = 0;
			if (copyAttempt)
			{
				copyAttempt = 0;
				return false;
			}
		}
//-->
