var newWindow;
function makeNewWindow(title, img_path) {
    if (!newWindow || newWindow.closed) {
        newWindow = window.open("","sub","resizable,status,height=400,width=400");
        writeToWindow(title, img_path);
    } else if (newWindow.focus) {
		newWindow.close();
		writeToWindow(title, img_path);
        newWindow.focus( );
    }
}
function writeToWindow(new_title, img_path) {
    var newContent = "<html><head><title>"+new_title+"</title></head>";
	newContent += "<LINK rel=stylesheet href=/style.css>";
    newContent += "<body><img width=400 heigth=400 src=\""+img_path+"\"</img><br>";
	newContent += "<center><a href=\"#\" OnClick=\"window.close()\">Закрыть Окно</a></center>";
    newContent += "</body></html>";
    newWindow.document.write(newContent);
    newWindow.document.close();
}
function makeNewWindow1(title, img_path, width, height) {
    if (!newWindow || newWindow.closed) {
        newWindow = window.open("","sub","resizable,status,height="+height+",width="+width+"");
        writeToWindow1(title, img_path, width, height);
    } else if (newWindow.focus) {
		newWindow.close();
		writeToWindow1(title, img_path, width, height);
        newWindow.focus( );
    }
}

function writeToWindow1(new_title, img_path, width, height) {
	width = width-50;
	height = height-50;
    var newContent = "<html><head><title>"+new_title+"</title></head>";
	newContent += "<LINK rel=stylesheet href=/style.css>";
    newContent += "<body><center><br /><img width="+width+" heigth="+height+" src=\""+img_path+"\"</img><br /><br />";
	newContent += "<a href=\"#\" OnClick=\"window.close()\">Закрыть Окно</a></center>";
    newContent += "</body></html>";
    newWindow.document.write(newContent);
    newWindow.document.close();
}
