//--
// Version: 1.0
// Author: A. Radovanovic (admin@radovanovic.com)
// Purpose: various jscript functions

// CenterWindow
// Centers window when called from the window.open:
// window.open ('Pg.html', 'WinName', CenterWindow('menu=no',200,300))

function CenterWindow (sFeatures,w,h)
{

	var winTop = (screen.availHeight - h - 50) / 2; // "magic" number 50: Windows bottom menu
	var WinLeft = (screen.availWidth - w) / 2;
	return ('\'' + sFeatures + ' width=' + w + ', height=' + h + ', top=' + winTop + ', left=' + WinLeft + ' \'');
}
