// JavaScript Document
<!--
         function popup(ref,sx,sy)

         {
            if (! window.focus) return true;
			leftPos = (screen.width / 2) - (sx / 2)
			topPos = (screen.height / 2) - (sy / 2)
             myWin = open("","Showcase", "width="+sx+",height="+sy+",left = "+leftPos+",top = "+topPos+"', menubar=no,toolbar=no,scrollbars=no");
             // open document for further output
             myWin.document.open();
			 // create document
             myWin.document.write("<html><head><title>");
             myWin.document.write("Whole Salon Spa Gallery");
             myWin.document.write('</title></head> <body bgcolor=black scroll=no topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0 onBlur=window.close() onLoad=window.focus()>');
             myWin.document.write('<center>');
             myWin.document.write('<div style="position: absolute; top:0px;left:0px"><a href="javascript:window.close()">  <img src="images/gallery/'+ ref + '.jpg" border="0"></a></div>');
             myWin.document.write('</center>');
             myWin.document.write("</body></html>");
             // close the document - (not the window!)
             myWin.document.close();
             return false;  
        }

//-->