function modalWin(window, text) {
	if (window.showModalDialog)
		xxx = window.showModalDialog("xpopupex.htm","name", "dialogWidth:255px;dialogHeight:250px");
	else
		xxx = window.open('xpopupex.htm','name','height=255,width=250,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
	xxx.document.write(text)
}
