﻿
// example: wopen('test.html', 'test', 'width=500,height=480,scrollbars=yes')
function wopen(url, width, height)
{
	win = window.open(url, 'slovaci', 'scrollbars=yes, menubar=no, titlebar=no, resizable=no, status=no, toolbar=no, width=' + width + ', height=' + height);
	win.focus();

} //wopen


function GetKeyDownCodeFromEvent()
{
	alert('!');
	
	var keyCode = 0;

	alert(keyCode);

	if(window.event) // IE
	{
	alert(keyCode);
		keyCode = e.keyCode
	}
	else if(e.which) // Netscape/Firefox/Opera
	{
	alert(keyCode);
		keyCode = e.which
	alert(keyCode);
	}
	
	alert(keyCode);
	
	return keyCode;
	
} //GetKeyDownCodeFromEvent
