
function ShowPicturePopup(src,x,y)
{		
	
	var window_width = x;
	var window_height = y;			
	var window_top = 50;
	var window_left = 50;	

	
	if((src=="")||(src.indexOf("img/nic.gif")>0))
		return;
	
	var zrodlo="../pages/picture.php?src="+src;	
	//try
	{
		//var wynik=showModalDialog(zrodlo,null,"dialogWidth:"+window_width+"px;dialogHeight:"+window_height+"px;dialogTop:"+window_top+";dialogLeft:"+window_left+";edge: Raised; center: Yes; help: No; resizable: Yes; status: No;");
	}
	//catch(e)
	{
		var img=window.open(zrodlo,'','titlebar=no,scrollbars=auto,resizable=yes,status=no,width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left);
		img.focus
	}


}

function Menu(text)
{
	menu(text);
}

function menu(text)
{
	switch(text)
	{
		default:
		top.window.location="index.php?page="+text;
		break;
	}
}




