function openNewWindow(URL, name, top, left, width, height) {
    if (name = ''){ name = '_blank'; }
	newwindow = window.open(URL, name, 
		'top=' + top + 
		', left=' + left + 
		', width=' + width + 
		', height=' + height + 
		', scrollbars=0, menubar=0'); 
	
	return newwindow; 
}

//Открывает изображение в новом окне
function openImageWindow(URL, title, width, height){
    newwindow = openNewWindow('', '', 0, 0, width, height);
    newwindow.document.writeln("<html><head><title>" + title + "</title></head><body style='padding:0px; margin: 0px;'>");
    newwindow.document.writeln("<img src='" + URL + "' width='" + width + "' height='" + height + "' alt='" + title + "' onClick='window.close()'>");
    newwindow.document.writeln("</body></html>");
    newwindow.document.close();
}