function message(lexikone, artikel)
{
	w = eval( 'window.open("","pix","height=300,width=300,resizable=yes");' );
	var d = w.document;
	d.open();
	d.write('<body bgcolor=white><font size="-1" face="Arial, Helvetica, Verdana" color=black>');
	d.write('<p>Der Band, in dem dieser Artikel steht, ist noch nicht erschienen.');
	
	lexika = lexikone.split("&");
	if(lexika.length > 1) 
		d.write('<p>Artikel zum Stichwort aus anderen Lexika:<br>');
	for(i=0; i<lexika.length - 1; i++)
	{
		temp = lexika[i].split(",");
		d.write('<br><a href=javascript:self.focus() onClick=javascript:opener.location.href=\'/lexika/showarticle.php?ID=' + temp[2] + '&LEX=' + temp[1] + '\'>' + artikel + '</a>&nbsp;(<b>' + temp[0] + '</b>)');
	}
	d.write('<br><br><a href=javascript:window.close();>[Fenster Schliessen]</a><br>');
	d.write('</font></body>');
	d.close();
}

function ShowPic(img, w, h)
{
	w = 1 * w + 40;
	h = 1 * h + 80;
	if (h > 600) {
		w = w + 24;
		h = 600;
	}
	if (w > 720) {
		w = 720;
		h = h + 24;
	}
	w = eval( 'window.open("","pix","height=' + h +',width=' + w + ',scrollbars=yes,resizable");' );
	w.focus();
	var d = w.document;
	d.open();
	d.write('<body bgcolor=white><font color=black>');
	d.write('<img src="http://www.wissenschaft-online.de' + img + '">');
	d.write('<p align=right><a href=javascript:print();>[Drucken]</a> <a href=javascript:window.close();>[Fenster Schlie&szlig;en]</a></p>');
	d.write('</font></body>');
	d.close();
}

function ArticleWinOpen( url, name ) {
	var mywin = window.open( url, name, "height=570,width=760,scrollbars=yes,resizable,status=yes,titlebar=yes" );
	mywin.focus();
}

function PopupWinOpen() {
        var mywin = window.open( "", "popupwin", "height=570,width=570,scrollbars=yes,resizable,status=yes,titlebar=yes" );
        mywin.focus();
}


