
function WindowOpen(murl,name,w,h) {
var mywin;
var bfr;
bfr='toolbar=no,resize=no,location=no,directories=no,status=no,menubar=no,width='+w+',height='+h+"'";

    mywin = window.open('','photo',bfr);
        mywin.document.open();
        mywin.document.write('<html><title>Sherborne Guest Home</title><body bgcolor="#000000" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>');
        mywin.document.write('<img src='+murl+'></body></html>');
        mywin.document.close();
        mywin.document.title=name;
        mywin.focus();
}