<!--
function getAppVersion() 
{
	appname= navigator.appName;
	appversion = navigator.appVersion;
	majorver = appversion.substring(0, 1); 
	if ( (appname == "Netscape") && ( majorver >= 3 ) ) return 1;
	if ( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) return 1;
	return 0;
}

function swtch(num, imgname) 
{
	if (getAppVersion()) document[imgname].src = img[num].src;
}


imgsrc = new Array();
imgsrc[1] = "images/uvod.JPG";
imgsrc[2] = "images/selected/uvod.JPG";
imgsrc[3] = "images/nabidka.JPG";
imgsrc[4] = "images/selected/nabidka.JPG";
imgsrc[5] = "images/kontakt.JPG";
imgsrc[6] = "images/selected/kontakt.JPG";
imgsrc[7] = "images/mapa.JPG";
imgsrc[8] = "images/selected/mapa.JPG";
imgsrc[9] = "images/admin.JPG";
imgsrc[10] = "images/selected/admin.JPG";
imgsrc[11] = "images/arrow_l.jpg";
imgsrc[12] = "images/selected/arrow_l.jpg";  
imgsrc[13] = "images/arrow_r.jpg";
imgsrc[14] = "images/selected/arrow_r.jpg";    

if (getAppVersion()) 
{
	img = new Array();
    for (i = 0; i < imgsrc.length; i++) 
	{
    	img[i] = new Image();
    	img[i].src = imgsrc[i];
    }
}

function openW(URL,width,height)
{
    window.open(URL,"","menubar=no,scrollbars=no,innerWidth="+width+",innerHeight="+height+",toolbar=no,status=no,screenX=100,screenY=100,width="+width+",height="+height);
}
-->