// JavaScript Document
function openWindow(theURL) { //v2.0
	var width = 720;
	var height = 720;
  	window.open(theURL,"detail","scrollbars=no,width=" + width + ",height=" + height);
} 

function openimg(my_object) { //v2.0
	var obj = my_object.src.toString();
	var len = obj.length - 6;
	var src = obj.substr(0,len) + ".jpg";
	width = 740;
	height = 740;
	newwindow = window.open("blank.html","newwindow","scrollbars=auto,width=" + width + ",height=" + height);
	newwindow.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
	newwindow.document.writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
	newwindow.document.writeln("<head>");
	newwindow.document.writeln("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
	newwindow.document.writeln("<title>Image Detail</title>");
	newwindow.document.writeln("</head>");
	newwindow.document.writeln("");
	newwindow.document.writeln("<body>");
	newwindow.document.writeln("<table height=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">");
	newwindow.document.writeln("<tr>");
	newwindow.document.writeln("<td align=\"center\" valign=\"middle\">");
	//newwindow.document.writeln("<div align=\"right\"><a href=\"javascritp:newwindow.window.close();\">Zavřít okno</a></div>");
	newwindow.document.writeln("<div align=\"center\"><img src=" + src + " /></div></td>");
	newwindow.document.writeln("</tr>");
	newwindow.document.writeln("</table>");
	newwindow.document.writeln("</body>");
	newwindow.document.writeln("</html>");
	newwindow.focus();
}
