// JavaScript Document

//funkce RTE editoru
//otevre popup okno s obrazkem
function popupImage(imgfile, alttext, width, height)
{
	var margin=10;
	var sx=(window.screen.width+margin)/2-(width+margin)/2;
	var sy=(window.screen.height+margin)/2-(height+margin)/2;
	//if(typeof(img)=='object') img.close();
	img=open('', 'img', 'height='+(height+margin)+', width='+(width+margin));
	img.moveTo(sx, sy);
	
	img.document.writeln("<html>\n<head>\n");
	img.document.writeln("<title>"+alttext+"</title>\n");
	img.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\">\n");
	img.document.writeln("<link href=\"styly.css\" rel=\"stylesheet\" type=\"text/css\">\n");
	img.document.writeln("</head>\n<body style=\"margin:"+margin/2+"px\">\n");
	img.document.writeln("<img src=\""+imgfile+"\" alt=\""+alttext+"\" style=\"cursor:pointer\" onClick=\"window.close();\">\n");
	img.document.writeln("</body>\n</html>");
}

//funkce obrazkove galerie
function galleryImage(id)
{
	//var sx=(window.screen.width+margin)/2-(width+margin)/2;
	//var sy=(window.screen.height+margin)/2-(height+margin)/2;
	//if(typeof(img)=='object') img.close();
	img=open('moduly/galerie-editor/picture.php?pict='+id, 'img', 'resizable,scrollbars');
	img.focus();
	//img.moveTo(sx, sy);
}
