function popup(pic,title,layout) {
baseloc=location.href.substring(0,location.href.lastIndexOf("/")+1);
image=imgroot+pic;
space=title.indexOf(" ");
h=poph;
w=popw;
if (space<0)
          {xtitle=title}
   else
          {xtitle=title.substr(0,space)};

msg=window.open("",xtitle,"height="+h+",width="+w+",left="+popleft+",top="+poptop);
msg.document.write('<head><META HTTP-EQUIV="imagetoolbar" CONTENT="no">');

msg.document.write('<script LANGUAGE="JavaScript">');
msg.document.write('function right(e) {');
msg.document.write("if (navigator.appName == 'Netscape' &&"); 
msg.document.write("(e.which == 3 || e.which == 2))");
msg.document.write("return false;");
msg.document.write("else if (navigator.appName == 'Microsoft Internet Explorer' && ");
msg.document.write("(event.button == 2 || event.button == 3)) {");
msg.document.write('alert("© Kathy and Jim Sawada. All rights reserved. These images are protected by copyright. They may be not be reproduced in any form or by any means, electronic or otherwise, without written permission from the artist.");');
msg.document.write("return false;");
msg.document.write("}");
msg.document.write("return true;");
msg.document.write("}");

msg.document.write("document.onmousedown=right;");
msg.document.write("document.onmouseup=right;");
msg.document.write("if (document.layers) window.captureEvents(Event.MOUSEDOWN);");
msg.document.write("if (document.layers) window.captureEvents(Event.MOUSEUP);");
msg.document.write("window.onmousedown=right;");
msg.document.write("window.onmouseup=right;");
msg.document.write('</'+'script>');

msg.document.write('</head>');
msg.document.write("<html><title>Kathy and Jim Sawada - "+xtitle+"</title>");
msg.document.write("<body bgcolor='white'>");
msg.document.write('<p align="center"><img border="0" src='+baseloc+image+'>');
//msg.document.write('<p style="margin-top: 2" align="center">&nbsp;</p>');
msg.document.write('<p style="margin-top: 0; margin-bottom: 0" align="center"><b><center><font size="4" color="#003300">'+title+'</font></center></b></p>');
msg.document.write('<p style="margin-top: 0; margin-bottom: 0" align="center"><font color="#000080"><INPUT TYPE="button" VALUE="CLOSE WINDOW" onClick="window.close()"></font></p>');
msg.document.write('<p style="margin-top: 0" align="center"><center><i><font size="1" color="#FF0000">© Kathy and Jim Sawada. All rights reserved.</font></i></center></p>');

msg.document.write("</body></html>");
msg.document.close();
}


