// JavaScript Document

  function newWindow(img, alt) {
     windowImg=window.open("","_blank","width=900,height=800");
     windowImg.document.write("<head><title>EXPANSIA STARS - Portfolio - "+ alt +"</title></head>");
     windowImg.document.write("<div style='text-align: center;'><strong>"+ alt +"</strong><br /><br /><img src='images/"+ img +".jpg' /></div>");
     return !newWindow;
  }

