<!--
var actualIMG = new Array('',500,400);

function SetActualImage(name,sizex,sizey){
	actualIMG[0] = name;
	actualIMG[1] = sizex;
	actualIMG[2] = sizey;
	//alert(name+' ' +sizex+' '+sizey);
}
function showimage(link, id){	
	link = link+"&imgdynamic="+actualIMG[0];
	LeftPosition=(screen.width)?(screen.width-500)/2:0;		
	TopPosition=(screen.height)?(screen.height-200)/2:0;		
	X = actualIMG[1];
	Y = actualIMG[2];
	msg=open(link,"ShowImage","top="+TopPosition+",left="+LeftPosition+",status=yes,resize=yes, width="+X+", height="+Y);			
	return false												
}	
function showwindow(link, id){	
	LeftPosition=(screen.width)?(screen.width-860)/2:0;		
	TopPosition=(screen.height)?(screen.height-500)/2:0;		
	msg=open(link,"ShowWindow","top="+TopPosition+",left="+LeftPosition+",status=yes,resize=yes,scrollbars=yes, width=860, height=500");			
	return false												
}	
function nowe_okno(linka)
{
	msg=open(linka,"popup","toolbar=no,directories=no,menubar=no, width=470, height=280, scrollbars=yes,resizable=yes");
  return false
}
function nowe_oknow(linka,id,x,y)
{
	LeftPosition=(screen.width)?(screen.width-x)/2:0;		
	TopPosition=(screen.height)?(screen.height-y)/2:0;		
	msg=open(linka,"popup","toolbar=no,directories=no,menubar=no, width="+x+", height="+y+", scrollbars=yes,resizable=yes");
  return false
}
//-->
