<!--
// File name: window.js // Created: 2002.06.03. by Zoltan Kovacs .: Werdy :.
// Last modificaton: 2002.06.03. by Zoltan Kovacs .: Werdy :.

function popup(width,height,html,text) {
	mywindow = window.open(html,"POPUP","width="+width+",height="+height+",toolbar=no,scrollbars=yes,status=no,titlebar=no,resizable=yes,menubar=no");
	if ( text ) {
		mywindow.document.write (' \
<HTML> \
<HEAD> \
<TITLE>POPUP</TITLE> \
<LINK rel="StyleSheet" href="css/default.css" type="text/css"> \
</HEAD> \
<BODY> \
<DIV class="text"> \
'+text+' \
</DIV> \
</BODY> \
</HTML>');
		mywindow.document.close();
	}
}

//-->

