
function ShowWindow()
{
	newwindow=window.open('window.htm','rek','height=440,width=300,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');
	
	if (null != newwindow && window.focus)
		newwindow.focus();
	return false;
}


