function printer(m) {
	url = "printer.php?m=" + m; 
	tool = "toolbar=no, location=no, menubar=no, resizable=yes, scrollbars=yes, width=650, height=550";
	window.open(url, 'Printer', tool);
}

function goto(title, width, height) {
	stat = "toolbar=no, location=no, menubar=no, resizable=no, scrollbars=yes, status=no, toolbar=no, width=" + width + ", height=" + height;

	var mywindow = window.open('', title, stat);

	DocRef = mywindow.document.open("text/html","replace");

        mywindow.document.write("<html>");
        mywindow.document.write("\n");
        mywindow.document.write(" <head>");
        mywindow.document.write("\n");
        mywindow.document.write("  <title>");
        mywindow.document.write("Vitrectomy.com - Recover from Macular Hole, Retinal Detachment, Macular Degeneration, and more.");
        mywindow.document.write("</title>");
        mywindow.document.write("\n");
        mywindow.document.write(' <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
        mywindow.document.write("\n");
        mywindow.document.write(" </head>");
        mywindow.document.write("\n");
        mywindow.document.write('<BODY BGCOLOR="#FFF8EE" VLINK="#0000dd" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">');
        mywindow.document.write("\n");
        mywindow.document.write(" <center>");
        mywindow.document.write("\n");
        mywindow.document.write("  <img src='images/LargePics/" + title + ".jpg'>");
        mywindow.document.write("\n");
        mywindow.document.write("  <br>");
        mywindow.document.write("\n");
        mywindow.document.write('  <a href="#" onclick="window.close();">');
        mywindow.document.write("\n");
        mywindow.document.write("   <font size=6><b>Close</a>");
        mywindow.document.write("\n");
        mywindow.document.write(" </center>");
        mywindow.document.write("\n");
        mywindow.document.write("</body>");
        mywindow.document.write("\n");
        mywindow.document.write("</html>");
}