﻿// FG Forrest, a.s. (c) 1996-2006

// Close window
function closeWin(descr) {
	document.write('<div><a href="javascript:window.close()" title="' + descr + '">' + descr + '<span></span></a></div>\n');
}

// Print window
function printWin(descr) {
	document.write('<span class="print"><a href="#" onclick="window.print(); return false;" title="' + descr + '">' + descr + '<\/a><\/span>\n');
}
// Open new window
function openWin(src,winName,w,h,scrll,xshift) {
	if (!xshift) { xshift = 0; }
	if (!scrll) { scrll = "no"; }
	var winLeft = (screen.width - w) / 2;
	var winTop = (screen.height - h) / 2;
	var winProp = 'menubar=no,resizable=no,scrollbars='+scrll+',status=no,toolbar=no,locationbar=no,directories=no';
	winProp += ',width='+w+',height='+h+',left='+eval(winLeft+xshift)+',top='+winTop;
	Win = window.open(src,winName,winProp);
	Win.focus();
}