function open_window(url) {
mywin = window.open("","Photo","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=620,height=410,left=100,top=100");
// write content to window
// mywin.document.clear();
mywin.document.write('<html><head><title>' + 'ACC Leisure Services' + '</title></head>');  
mywin.document.write('<BODY BGCOLOR=#ffffff>');
mywin.document.write('<div align=center>');
mywin.document.write('<img src=' + url + '>');
mywin.document.write('</div></body></html>');
mywin.document.close();
mywin.focus(); 
}
