function openhtmlWindow(sourceFile, windowWidth, windowHeight, distanceTop, distancLeft,needscroll)
{
	pictureWindow = window.open(sourceFile, "plainwindow","width=" + windowWidth + ",height=" + windowHeight + ",top=" + distanceTop + ",left=" + distancLeft + ",toolbar=0,location=0,resizable=0,status=0,menubar=0,fullscreen=0,scrollbars="+needscroll+"");
	pictureWindow.focus();	
}