/*
* Funkcja otwierająca okienko popup o podanym rozmiarze,
* w jednym z trzech rozmiarów.
*/
function popUp(sURL, sType, sHeight, sWidth)
{
	var sOptions = "";
	if (sType == "console") sOptions = "resizable, height=" + sHeight + ", width=" + sWidth;
	if (sType == "fixed") sOptions = "status, height=" + sHeight + ", width=" + sWidth;
	if (sType == "scrolling") sOptions = "status, scrollbars, height=" + sHeight + ", width=" + sWidth;
	if (sType == "elastic") sOptions = "toolbar, menubar, scrollbars, resizable, location, height=" + sHeight + ", width=" + sWidth;
	
	window.open(sURL, 'newWin', sOptions);
}
