var asPackages = null;
function showPackageList()
{
if( asPackages == null ) return;
var wnd = 
	window.open( "_blank", "WCTPackage", "toolbar=no,directories=no,titlebar=yes,status=yes,scrollbars=yes,resizable=yes,location=no,height=300,width=350,top=0,left=20" );
wnd.document.writeln( "<HTML>"); 
wnd.document.writeln( "<TITLE></TITLE>" ); 
wnd.document.writeln( "<link href='1__R_AE__R_7I__Catalog.css' rel='styleSheet' type='text/css'>" );
wnd.document.writeln( "</HEAD><BODY>");
wnd.document.writeln( "<P class='fulldescription'>Your  includes the following items: ");
wnd.document.writeln( "<UL>" );

for( var i = 0; i < asPackages.length; i++ )
  wnd.document.writeln( "<LI><SPAN class='productname'>" + asPackages[ i ] + "</SPAN>" );
wnd.document.writeln( "</UL>" );

wnd.document.writeln( "<P class='fulldescription'>To purchase your , please add each item separately to your order.");
wnd.document.writeln( "<P><CENTER><A class='productname' HREF='javascript:window.close()'>Close</A></CENTER>");
wnd.document.writeln( "</BODY></HTML>"); 
 wnd.document.close();
}
