//preload obrazkow menu
rol_images=new Array('menu_01','menu_02','menu_03','menu_04','menu_05','menu_06','menu_07','menu_08');
for(i=0; i<rol_images.length; i++) {
	eval(rol_images[i]+"=new Image();");
	eval(rol_images[i]+".src='gfx/"+rol_images[i]+".jpg';");
	eval(rol_images[i]+"_rol=new Image();");
	eval(rol_images[i]+"_rol.src='gfx/"+rol_images[i]+"_rol.jpg';");
}
function rol_on(img) {
	img_src=document.getElementById(img).src;
	var dot_pos=img_src.lastIndexOf('.');
	var rol_img=img_src.substr(0,dot_pos)+"_rol"+img_src.substr(dot_pos);
	document.getElementById(img).src=rol_img;
}
function rol_off(img) {
	document.getElementById(img).src=img_src;
}

//nowe okno
function win_open(path, w, h, win_name) {
	l=(window.screen.width-w)/2; t=(window.screen.height-h)/2;
	winny=window.open(path, win_name, 'width='+w+', height='+h+', left='+l+', top='+t+', alwaysRaised=yes');
	winny.focus();
}

//otwiera popup-a z obrazkiem
function show_pic(path, w, h, title, win_name) {
	var l=(window.screen.width-w)/2;
	var t=(window.screen.height-h)/3;
	if(win_name==undefined) win_name='new_win';
	var winny=window.open('', win_name, 'width='+w+', height='+h+', left='+l+', top='+t+', scrollbars=no');
	if(winny.document.getElementById('body_id')==undefined) {
		winny.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+title+'</title></head><body id="body_id" style="background-color:white;margin:0px;padding:0px"><a href="javascript:window.close()"><img src="'+path+'" width="'+w+'" height="'+h+'" title="'+title+'" alt="'+title+'" border="0" style="display:block"></a></body></html>');
	}
	winny.focus();
}

