function openhtmlWindow(sourceFile, windowWidth, windowHeight, distanceTop, distancLeft)
{
	pictureWindow = window.open(sourceFile, "plainWindowHungarian", "width=" + windowWidth + ",height=" + windowHeight + ",top=" + distanceTop + ",left=" + distancLeft + ",toolbar=0,location=0,resizable=0,status=0,menubar=0,fullscreen=0,scrollbars=auto");
	pictureWindow.focus();	
}

helpWindow = null;
function openHelpWindow(source)
{
	if (helpWindow != null)
	{
		helpWindow.close();
		helpWindow = null;
	}
	helpWindow = window.open(source, 'helpWindowHungarian', 'resizeable=0, scrollbars=1, width=780, height=500');
}

