function openWin( u ) { 
	atv_window = open("", "atv_window", 
	"width=960,height=850,status=no,toolbar=no,menubar=no,resizable=yes"); 
	// open document for further output 
	atv_window.document.open(); 
	// create document 
	atv_window.document.write( "<HTML><HEAD><TITLE>ATV" ); 
	atv_window.document.write( "</TITLE></HEAD><BODY>" ); 
	atv_window.document.write( "<BODY TEXT =\"#FFFFFF\" BGCOLOR =\"#000000\">"); 
	atv_window.document.write( "<FONT FACE = \"HELVETICA, ARIAL\">" ); 
	atv_window.document.write( "<CENTER><B>" ); 
//	atv_window.document.write( "Please do not close this window<BR>as long as you want to use ATV.\n" ); 
	atv_window.document.write( "<APPLET ARCHIVE=\"http://www.biorecipes.com/Orthologues/StatusPage/forester-atv/archaeopteryx_applets.jar\"" );
        atv_window.document.write( " code=\"org.forester.archaeopteryx.ArchaeopteryxE.class\"" );
        atv_window.document.write( " codebase=\"http://phylosoft.org/forester/download\"" );
	atv_window.document.write( " width=100% height=100%\n" ); 
	atv_window.document.write( "<PARAM NAME=\"url_of_tree_to_load\"" ); 
	atv_window.document.write( " VALUE="+u+">\n" ); 
        atv_window.document.write( "<PARAM NAME=\"config_file\"");
        atv_window.document.write( " VALUE=\"http://www.biorecipes.com/Orthologues/StatusPage/forester-atv/atv_config.conf\">\n" );
        atv_window.document.write( "</APPLET>\n" ); 
	atv_window.document.write( "</BODY></HTML>" ); 
	// close the document - (not the window!) 
	atv_window.document.close(); 
} 
