/***************************************************************
*
*  Picture helpers
*
*  Copyright notice
*
*  (c) 2005 Dmitry Martynenko
*  All rights reserved
*
*  This copyright notice MUST APPEAR in all copies of this script
***************************************************************/

function PopupImage(imgPath,imgWidth,imgHeight)
{
	var left = (screen.width - imgWidth) / 2;
	left = left < 0 ? 0 : left;
	
	var top  = (screen.height - imgHeight) / 2;
	top = top < 0 ? 0 : top;
	
	if (imgWidth > screen.width) imgWidth = screen.width - 20;
	if (imgHeight > screen.height) imgHeight = screen.height - 15;
	
	var wndName = "window" + Math.round (Math.random() * 1000);
	var wndObject = window.open ("", wndName,
		"location=0,scrollbars=1,menubar=0,toolbar=0,status=0,resizable=1,directories=0,"+
		"left=" + left + ",top=" + top + ",width=" + (imgWidth+20) + ",height=" + (imgHeight+15));
	wndObject.moveTo(left, top);
	wndObject.document.write(
		"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"><html>" + 
		"<head><title>Фото</title></head>" + 
		"<body style=\"border: none; margin: 0 0 0 0;\">" + 
		"<a href=\"#\" onClick=\"window.close(); return false;\"><img src=\"" + imgPath + "\" alt=\"Закрыть\" /></a>" + 
		"</body></html>");
}

function DeleteConfirm(form)
{
	if (confirm("Вы уверены что хотете удалить выбранное изображение?"))
	{
		form.submit();
		return true;
	} else {
		return false;
	}
}
