function Popup2(src, width, height)
{
   window.open(src,"","width="+width+" ,height="+height+",status=no,scrollbars=no,resizable=no,toolbar=no,menubar=no");
}

function Popup3(src, width, height)
{
   window.open(src,"","width="+width+" ,height="+height+",status=no,scrollbars=no,resizable=yes,toolbar=no,menubar=no");
}

function popap(plik,wysokosc,szerokosc) { 

var gora =(screen.height - wysokosc) / 2;
var lewo = (screen.width - szerokosc) / 2;

ustawienia = 'toolbar=no,menubar=no,scrollbars=no, resizable=no,status=no,location=no,directories=no,top=' + gora + ', left=' + lewo + ',fullscreen=no, height=' + wysokosc + ', width=' + szerokosc + ' '; 
plik1= 'zdjecie.php?nazwa=' + plik +'';
window.open(plik1, '', ustawienia); 
} 

/*--------------------------------------------------------------------------------------------*/
/*funkcja otwierająca nowe okno dla szczegółów produktu ze sklepu*/
/*--------------------------------------------------------------------------------------------*/
var myRemote = null;
/*--------------------------------------------------------------------------------------------*/
function launch(newURL, newName, newFeatures, orgName)
{
var remote = open(newURL, newName, newFeatures);
if (remote.opener == null)
remote.opener = window;
remote.opener.name = orgName;
return remote;
}
/*--------------------------------------------------------------------------------------------*/

function launchDetail(web)
{
 if (myRemote == null || myRemote.closed )
 {
  	var nav=(navigator.appName);
	
	if (nav=='Microsoft Internet Explorer')
		myRemote = launch(web, "myRemote", "screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "MENU");
	if (nav=='Netscape')
		myRemote = launch(web, "myRemote", "screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "MENU");
 }else
 {
 	myRemote.close();
	launchDetail(web);
 }
 return myRemote;
}

function popupwindow(index)
{
        if(index==1)
        {
		var nav=(navigator.appName);
	
	if (nav=='Microsoft Internet Explorer')
		myRemote = launch('http://sklep.prawojazdy.com.pl/szczegoly.php?prod=W012', "myRemote1", "screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "MENU");
	if (nav=='Netscape')
		myRemote = launch('http://sklep.prawojazdy.com.pl/szczegoly.php?prod=W012', "myRemote1", "screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "MENU");

        }
        

}


