function openNewWindow(img_src, width, height) {
	var newWindow = window.open("", "", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");
	newWindow.document.writeln("<html><head><title>Витус Девелопмент</title></head><body style='margin: 0; padding: 0;'><img src='" + img_src + "' id='lg_img' border='0'/></body></html>");
    newWindow.document.close();
}
