
document.writeln('<div id="CPLayer">');document.writeln('<table class="CPToolTip" cellspacing="0" cellpadding="0" border="0">');document.writeln('<tr><td class="Head" height="20">&#169; VRX Studios Inc.</td></tr>');document.writeln('<tr><td height="75" class="Text">Licensing VRX content is easy. Call VRX today, at 1-888-605-0059, to find out how. All rights to this image are owned exclusively by VRX Studios Inc. No other party has the right to use this image, in any way whatsoever, unless expressly permitted by VRX Studios in writing.</td></tr>');document.writeln('</table>');document.writeln('</div>');  var specialcase = ((navigator.userAgent.indexOf('Mac') != -1) || document.all);
					var flag = 0;
					var copyAttempt;
					function CopyrightInit(OnlyJPGs)
					{
						if (!(document.getElementById || document.all || document.layers))
						{
							return;
						}
						if (specialcase && document.layers)
						{
							document.captureEvents(Event.MOUSEMOVE);
							document.onmousemove = SpecialMouseMove;
						}
						document.onmousedown = ClearCopyright;
						for (i = 0; i<document.images.length; i++)
						{
							if (OnlyJPGs)
							{
								if (-1 != document.images[i].src.indexOf('.jpg'))
								{
									document.images[i].oncontextmenu = ReturnFalse;
									document.images[i].onmouseup = CheckMouseClick;
									if (specialcase)
									{
										document.images[i].onmousemove = SpecialMouseMove;
										document.images[i].onclick = ClearCopyright;
									}
								}
							}
							else
							{
								document.images[i].oncontextmenu = ReturnFalse;
								document.images[i].onmouseup = CheckMouseClick;
								if (specialcase)
								{
									document.images[i].onmousemove = SpecialMouseMove;
									document.images[i].onclick = ClearCopyright;
								}
							}
						}
					}  function SpecialMouseMove(e)
						{
							var x1,
								y1;
							theObj = '';
							if (window.event)
							{
								x1 = window.event.clientX;
								y1 = window.event.clientY;
								theObj = window.event.srcElement.parentElement.tagName;
							}
							else if (window.Event)
							{
								if(typeof(e) != "undefined")
								{
									x1 = e.screenX;
									y1 = e.screenY;
									if (e.target.parentNode)
									{
										theObj = e.target.parentNode.tagName;
									}
								}
							}
							var x,
								y;
							if (window.event && window.event.button == 2)
							{
								y = document.body.scrollTop + window.event.y;
								x = document.body.scrollLeft + window.event.x;
							}
							else if (window.Event && typeof(e) != "undefined" && e.which == 3)
							{
								y = document.body.scrollTop + e.screenY;
								x = document.body.scrollLeft + e.screenX;
							}
							var isLink = (theObj == 'A');
							if (flag && (!isLink || ((Math.abs(x - x1) > 10) || (Math.abs(y - y1) > 10))))
							{
								copyAttempt = 1;
								flag = 0;
								document.getElementById('CPLayer').style.top = y1;
								document.getElementById('CPLayer').style.left = x1;
								document.getElementById('CPLayer').style.visibility = 'visible';
							return false;
							}
						}  function CheckMouseClick(e)
						{
							copyAttempt = 0;
							if (window.event && window.event.button == 2) //IE
							{
								copyAttempt = 1;
								flag = 0;
								document.getElementById('CPLayer').style.top = document.body.scrollTop + window.event.y;
								document.getElementById('CPLayer').style.left = document.body.scrollLeft + window.event.x;
								document.getElementById('CPLayer').style.visibility = 'visible';
								return false; // NN4 only
							}
							else if (window.Event) //Mozilla
							{
								if (typeof(e) != "undefined" && e.which == 3)
								{
									document.oncontextmenu = ReturnFalse;
									copyAttempt = 1;
									flag = 0;
									document.getElementById('CPLayer').style.top = e.pageY;
									document.getElementById('CPLayer').style.left = e.pageX;
									document.getElementById('CPLayer').style.visibility = 'visible';
									return false; // NN4 only
								}
							}
							if (specialcase)
							{
								flag = 1;
								return false;
							}
						}  function ClearCopyright()
						{
							flag = 0;
							if (copyAttempt)
							{
								document.getElementById('CPLayer').style.visibility = 'hidden';
								copyAttempt = 0;
							return false;
							}
						}  function ReturnFalse(){return false;} CopyrightInit(false);