function displayWindow(url, width, height) {
script = "moduly/" + url;
window.open(script,'','width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
}

function OpenBigWindow (WindowName, Resize, szer, wys, URL)
{
	var x = 0, y = 0, s_w = screen.width, s_h = screen.height;



        if (szer < s_w)
         {
             szer = szer + 10;
         }
        if (wys < s_h)
         {
             wys = wys + 5;
         }


	if (s_w > 0 && s_h > 0)
	{
		if (s_w <= szer) szer=s_w;
		else
		{
			x = (s_w / 2) - (szer / 2);
			if (x < 0) x = 0;
		}

		if (s_h <= wys) wys = s_h;
		else
		{
			y = (s_h / 2) - (wys / 2);
			if (y < 0) y = 0;
		}
	}

script = URL;
	NewWindow = window.open (script, WindowName, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+ Resize +',resizable='+ Resize +',width='+ szer +',height='+ wys +',left='+ x +',top='+ y);
}



function OpenWindow (WindowName, Resize, URL)
{
	var x = 0, y = 0, szer = 820, wys = 800, s_w = screen.width, s_h = screen.height;

	if (s_w > 0 && s_h > 0)
	{
		if (s_w <= szer) szer=s_w;
		else
		{
			x = (s_w / 2) - (szer / 2);
			if (x < 0) x = 0;
		}

		if (s_h <= wys) wys = s_h;
		else
		{
			y = (s_h / 2) - (wys / 2);
			if (y < 0) y = 0;
		}
	}

script = "moduly/" + URL;
	NewWindow = window.open (script, WindowName, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+ Resize +',resizable='+ Resize +',width='+ szer +',height='+ wys +',left='+ x +',top='+ y);
} 


function Szukaj()
{
var scity = document.forms['map24'].elements['startcity'].value;
var scountry = document.forms['map24'].elements['startcountry'].value;

if ( scity!='')
{
ll='http://link2.map24.de/?lid=4c3f146c&ol=uk-en&dstreet=&dzip=34-312&dcity=Miedzybrodzie%20Zywieckie&dcountry=pl&sstreet=&szip=&scity='+scity+'&scountry='+scountry;
var s_w = screen.width, s_h = screen.height;
NewWindow = window.open (ll, 'NewWindowName', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+ s_w +',height='+ s_h +',left=0,top=0');
document.forms['map24'].reset();
}
else
 alert('Proszę wpisać miasto!');
}

function Szukaj2()
{
var scity = document.forms['map24_2'].elements['startcity'].value;
var scountry = document.forms['map24_2'].elements['startcountry'].value;

if ( scity!='')
{
ll='http://link2.map24.de/?lid=4c3f146c&ol=uk-en&dstreet=&dzip=34-312&dcity=Miedzybrodzie%20Zywieckie&dcountry=pl&sstreet=&szip=&scity='+scity+'&scountry='+scountry;
var s_w = screen.width, s_h = screen.height;
NewWindow = window.open (ll, 'NewWindowName', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+ s_w +',height='+ s_h +',left=0,top=0');
document.forms['map24'].reset();
}
else
 alert('Proszę wpisać miasto!');
}

