// JavaScript Document
<!--
			// Script Source: CodeLifter.com
			// Copyright 2003
			// Do not remove this notice.
			// SETUPS:
			// ===============================
			// Set the horizontal and vertical position for the popup
			PositionX = 100;
			PositionY = 60;
			// Set these value approximately 20 pixels greater than the
			// size of the largest image to be used (needed for Netscape)
			defaultWidth  = 250;
			defaultHeight = 250;
			// defaultMaxHeight = 480;
			// Set autoclose true to have the window close automatically
			// Set autoclose false to allow multiple popup windows
			var AutoClose = true;
			// Do not edit below this line...
			// ================================
			if (parseInt(navigator.appVersion.charAt(0))>=4){
			var isNN=(navigator.appName=="Netscape")?1:0;
			var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
			var optNN='scrollbars=yes,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
			var optIE='scrollbars=yes,width=150,height=100,left='+PositionX+',top='+PositionY;
			function popImage(imageURL,imageTitle){
			if (isNN){imgWin=window.open('about:blank','',optNN);}
			if (isIE){imgWin=window.open('about:blank','',optIE);}
			with (imgWin.document){
			writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');
			// added here
			writeln('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
			// end added here
			writeln('<sc'+'ript>');
			// Added this line'
  			// writeln('defaultMaxHeight ='); writeln(defaultMaxHeight); writeln(';');
			//
			writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
			writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
			writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(100,100);');
			writeln('width=100-(document.body.clientWidth-document.images[0].width);');
			writeln('height=100-(document.body.clientHeight-document.images[0].height);');
			// Adjust to Max Height if required
			// writeln('if (height > defaultMaxHeight) { height = defaultMaxHeight;}');
			
			writeln('window.resizeTo(width,height);}');writeln('if (isNN){');       
			writeln('window.innerWidth=document.images["George"].width;');
			writeln('window.innerHeight=document.images["George"].height;}}');
			// Added below
			// writeln(writeln('if (window.innerHeight=document.images["George"].height > defaultMaxHeight) { window.innerHeight = defaultMaxHeight;}');
			writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
			if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
			else writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
			writeln('<img name="George" src="'+imageURL+'" style="display:block;">');
// Extra Script inserted here...

writeln(unescape("%3Cscript%20language%3D%22JavaScript1.2%22%3E%0A%0A/*%0ADisable%20right%20click%20script%20II%20%28on%20images%29-%20By%20Dynamicdrive.com%0AFor%20full%20source%2C%20Terms%20of%20service%2C%20and%20100s%20DTHML%20scripts%0AVisit%20http%3A//www.dynamicdrive.com%0A*/%0A%0Avar%20clickmessage%3D%22Thank%20you%20for%20visiting%20Perfection%20Dermagraphics%21%22%0A%0Afunction%20disableclick%28e%29%20%7B%0Aif%20%28document.all%29%20%7B%0Aif%20%28event.button%3D%3D2%7C%7Cevent.button%3D%3D3%29%20%7B%0Aif%20%28event.srcElement.tagName%3D%3D%22IMG%22%29%7B%0Aalert%28clickmessage%29%3B%0Areturn%20false%3B%0A%7D%0A%7D%0A%7D%0Aelse%20if%20%28document.layers%29%20%7B%0Aif%20%28e.which%20%3D%3D%203%29%20%7B%0Aalert%28clickmessage%29%3B%0Areturn%20false%3B%0A%7D%0A%7D%0Aelse%20if%20%28document.getElementById%29%7B%0Aif%20%28e.which%3D%3D3%26%26e.target.tagName%3D%3D%22IMG%22%29%7B%0Aalert%28clickmessage%29%0Areturn%20false%0A%7D%0A%7D%0A%7D%0A%0Afunction%20associateimages%28%29%7B%0Afor%28i%3D0%3Bi%3Cdocument.images.length%3Bi++%29%0Adocument.images%5Bi%5D.onmousedown%3Ddisableclick%3B%0A%7D%0A%0Aif%20%28document.all%29%0Adocument.onmousedown%3Ddisableclick%0Aelse%20if%20%28document.getElementById%29%0Adocument.onmouseup%3Ddisableclick%0Aelse%20if%20%28document.layers%29%0Aassociateimages%28%29%0A%3C/script%3E"));
// End Extra Script
			writeln('</body></html>');
			close();		
			}}
			-->
