/*******************************************************************************
*
*	zoom_window.js
*
*******************************************************************************/

/*
	open_zoom_wnd - opens new browser window with given image in img_path variable
*/
function open_zoom_wnd(title, img_path, style_sheet_path) {
	wnd = open('','','alwaysRaised,toolbar=no,titlebar=no,resizeable=no,scrollbars=yes');
	doc = wnd.document;
	doc.write('<html>');
	doc.write('<head>');
	doc.write('<title>Detail ' + title + '</title>');
	doc.write("<link rel='stylesheet' type='text/css' href='" + style_sheet_path + "'>");
	doc.write('</head>');
	doc.write('<body>\n');
/*
	doc.write('<h4>Detailný pohľad na ' + title + '</h4>\n');
	doc.write('<br/><br/>\n');
*/
/* vypocet velkosti obrazku
     jeho vyska su 3/4 vysky rozlisenia */
	//h = 3/4 * screen.height;
	doc.write('<center><img src=');
	doc.write('"' + img_path + '"');
	doc.write('name="big_img" /></center>\n');
	doc.write('<br/>');
	doc.write('<center><input type="button" onclick="self.close();" value="zatvor okno"/></center>');
	doc.write('</body>\n');
	doc.write('</html>\n');
/*
	doc.write('<center><img src=');
	doc.write('"' + img_path + '"');
	doc.write('name="big_img" height="'+h+'"/></center>\n');
	doc.write('<br/>');
	doc.write('<center><input type="button" onclick="self.close();" value="zatvor okno"/></center>');
	doc.write('</body>\n');
	doc.write('</html>\n');
	//test if image is in screen range if not strip-in it
	if(doc.big_img.width >= (screen.width - 100)) {
		var strip = 100;
		var _x_ = screen.width - strip;
		doc.big_img.height *= _x_ / doc.big_img.width;
		doc.big_img.width = _x_;
	}
	//resize window to fit the image
	w = doc.big_img.width + 50;
	h = doc.big_img.height + 150; 
*/
	w = screen.width - 50;
	h = screen.height - 150; 
	wnd.resizeTo(w,h);
	//center window
	x = screen.width / 2 - w / 2;
	y = screen.height / 2 - h / 2;
	wnd.moveTo(x,y);
}

