<!--
function open_new_window(url)
{
new_window = open("","displayWindow");

// open new document
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><head><title>Cartmel Guest House</title><meta HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\"><meta HTTP-EQUIV=\"imagetoolbar\" CONTENT=\"no\"><link href=\"cartmel.css\" rel=stylesheet></head>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<img src=\"" + url + "\">");
new_window.document.write("</body></html>");

// close the document
new_window.document.close();
}

// -->
