/* woof.js - simple javascript stuff for Woof Woof Australia website.
 * Author: John Van Der Loo
 * Email: John@afterlight.net.au
 * Web: www.afterlight.net.au
 * Copyright: John Van Der Loo (c) 2006
 */
 
 function showImg(img) {
   var opts = "width=500, height=420, toolbar=no, location=no, status=no, menubar=no, scrollbars=no, tabbar=no, resizable=yes, copyhistory=no";
   window.open(
      "showimg.php?img="+img,
      "_blank",
      opts
   );
 }
 