function open_window (file_path, file_alt) {
	//
	if (param_page == 'offers' || param_page == 'projects') file_path = file_path.substr(0, file_path.length - 4) + '_big.jpg';
	//
	outerWindowBorderX = 8;
	outerWindowBorderY = 95;
	//
	html = '<html><head>';
	html+= '<style type="text/css">';
	html+= 'body { margin: 0; padding: 0; background: #D1F8FF; color: #FF6633; }';
	html+= 'p { font: 11px Trebuchet MS, sans-serif; padding-left: 20px; }';
	html+= 'img { border: none; cursor: no-drop }';
	html+= '</style>';
	html+= '<title>' + file_alt + '</title></head><body>';
	html+= '<a href="javascript: window.close();" alt="Затвори прозореца" title="Затвори прозореца"><img ';
	html+= 'src="' + file_path + '" ';
//		html+= 'alt="' + file_alt + '" ';
//		html+= 'title="' + file_alt + '" ';
	html+= 'onload="window.resizeTo(this.width + ' + outerWindowBorderX + ', this.height + ' + outerWindowBorderY + '); ';
	html+= 'window.moveTo((screen.width - this.width + ' + outerWindowBorderX + ') / 2, (screen.height - this.height + ' + outerWindowBorderY + ') / 2);" /></a>';
	html+= '<p>' + file_alt + '</p>';
	html+= '</body></html>';
	//
	myWindow = window.open ('', 'open_window', 'resizable=yes, scrollbars=yes');
	//
	myWindow.document.open();
	myWindow.document.write(html);
	myWindow.document.close();
	myWindow.focus();
}