<!--
			function sendPoster( src )
			{
				var lWidth 	= 480;
				var lHeight = 340;
				
				var oWindow = openPopup( 'send.html', src + 'sendposter', lWidth, lHeight );
				
				oWindow.banner = src;
			
			}
			
			function openPoster( src, lWidth, lHeight)
			{
				
				
				var oWindow = openPopup( '', src + 'poster', lWidth, lHeight );
				
				oWindow.focus();
				
				oWindow.document.writeln( '<html>' );
				oWindow.document.writeln( '	<head>' );
				oWindow.document.writeln( '		<title>The Lord of the Rings</title>' );
				oWindow.document.writeln( '		<style>' );
				oWindow.document.writeln( '		<!--' );
				oWindow.document.writeln( '			.copyright' );
				oWindow.document.writeln( '			{' );
				oWindow.document.writeln( '				FONT-FAMILY: arial, helvetica, sans-serif;' );
				oWindow.document.writeln( '				FONT-SIZE: 10px;' );
				oWindow.document.writeln( '			}' );
				oWindow.document.writeln( '		//-' + '->' ); 
				oWindow.document.writeln( '		</style>' );
				oWindow.document.writeln( '		<script language="javascript" src="/jscript/library.js"></script>' );
				oWindow.document.writeln( '	</head>' );
				oWindow.document.writeln( '	<body bgcolor="#ffffff" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" text="#cccccc" link="#999999" alink="#e82323" vlink="#999999">' );
				oWindow.document.writeln( '		<table cellspacing="0" cellpadding="0" border="0"><tr><td colspan="3"><img src="images/color_clear.gif" width="1" height="10" border="0"></td></tr><tr valign="top"><td><img src="images/color_clear.gif" width="30" height="1"></td><td align="center">' );
				oWindow.document.writeln( '			<img src="images/color_clear.gif" width="1" height="6" alt=""><br>' );
				oWindow.document.writeln( '			<img src="images/' + src + '_large.jpg" border="0"><br>' );
				oWindow.document.writeln( '			<img src="images/color_clear.gif" width="1" height="8" alt=""><br>' );

				
				oWindow.document.writeln( '			<a href="javascript:openTwoTowersPosterInstructions();"><img src="images/instructions.gif" border="0"></a><br>' );
				oWindow.document.writeln( '			<img src="images/color_clear.gif" width="1" height="6" alt=""><br>' );
					
				oWindow.document.write( getCopyright( false, false ) );
				oWindow.document.write( '		<td><img src="images/color_clear.gif" width="30" height="1"></td></tr></table>' );
				oWindow.document.write( '	</body>' );
				oWindow.document.write( '</html>' );
			
			}
			
			
//-->
		