function showAddressbook( targetEmail ){
	addressbook = window.open('','Addressbook','resizable=yes,width=800,height=526,scrollbars'); 
	addressbook.focus();

	addressbook.document.writeln('<html>');
	addressbook.document.writeln('<head><title>Infocracks.com Adressbuch</title></head>');
	addressbook.document.writeln('<script language="JavaScript">');
	addressbook.document.writeln('	/*PRIVATE !!*/targetEmail= null;');
	addressbook.document.writeln('	/*PRIVATE !!*/targetWindow = null;');
	addressbook.document.writeln('	function schliessen() { window.close();	}');
	addressbook.document.writeln('	function setTargetEmail( target ) { targetEmail = target;  }');
	addressbook.document.writeln('	function setEmail( email ) { targetEmail.value = email; }');
	addressbook.document.writeln('	function getEmail( ) { return targetEmail.value }');
	addressbook.document.writeln('	function setTargetWindow( target ) { targetWindow = target; }');
	addressbook.document.writeln('	function getTargetWindow( ) { return targetWindow; }');


	addressbook.document.writeln("<"+"/script"+">");

	addressbook.document.writeln('<frameset cols="420,380" border="0" frameborder="0" framespacing="0">');
	addressbook.document.writeln('	<frame src="/Infocracks/index.php?noHeader=1&newPageId=38" name="AddressbookFolders" scrolling="auto">');
	addressbook.document.writeln('	<frame src="/Infocracks/index.php?noHeader=1&newPageId=39" name="AddressbookDisplay" scrolling="no">');
	addressbook.document.writeln('</frameset>');
	addressbook.document.writeln('</html>');													


	addressbook.setTargetEmail( targetEmail );
	addressbook.setTargetWindow( window );
}
