<!--
	function letoltesszoftver(id) {
		var popWidth = 300;
		var popHeight = 300;
		var leftPos = ((screen.width-popWidth) / 2) - 5;
		var topPos  = ((screen.height-popHeight) / 2) - 25;
		
		var winattributes = "toolbar=no,menubar=no,scrollbars=no,resizable=yes,width=" + popWidth + ",height=" + popHeight + ",left=" + leftPos + ",top=" + topPos;
		if (typeof popWin=="undefined" || popWin.closed) {
			popWin = window.open("software/downloaddemo.php?demoid="+id, "", winattributes);
		} else {
			popWin.close();
			popWin = window.open("software/downloaddemo.php?demoid="+id, "", winattributes);
		}
		popWin.focus();
	}
-->

