function admin(url, width, height) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}

	function Check() {
		return CheckConsumerID();
	}

	function CheckConsumerID() {

		if(window.document.frmForm.imie.value == ""  )
		{
			alert("Prosze podac imie.");
			return false;
		}

		if(window.document.frmForm.mail.value == ""  )
		{
			alert("Prosze podac adres e-mail.");
			return false;
		}

		if(window.document.frmForm.tresc.value == ""  )
		{
			alert("Prosze wpisac tresc zapytania.");
			return false;
		}
		
		return true;
	}
	
function pokazChat()
	{
		document.getElementById('chat1').style.display =  'none';
		document.getElementById('chat2').style.display =  'block';
	}
