// JavaScript Document
function displayPhoto(imageUrl,imageWidth,imageHeight,textdescription) {

var name="popup";
var windowWidth="350px";
var windowHeight="550px";


var features="width="+windowWidth+",height="+windowHeight; 

features+="menubar=no,directories=no,titlebar=no,status=no,scrollbar=no,toolbar=no,location=no,resizable=no,top=100,left=130";
var myNewWindow=window.open('',name,features);

myNewWindow.focus();
myNewWindow.document.open();
myNewWindow.document.write("<html>");
myNewWindow.document.write("<head>");
myNewWindow.document.write("<title>Extreme Guitars</title>");
myNewWindow.document.write("</head>");
myNewWindow.document.write("<body background='images/popback.gif'>");
myNewWindow.document.write("<div style='text-align: center; font-size: 12px; margin-top: 100px;'>"+textdescription+"</div>");
myNewWindow.document.write("<div style='text-align:center'>");
myNewWindow.document.write("<img width="+imageWidth+" height="+imageHeight+" src="+imageUrl+">");
myNewWindow.document.write("</div>");
myNewWindow.document.write("<form>");
myNewWindow.document.write("<input type='button' value='close this window!' onClick='parent.close()'>");
myNewWindow.document.write("</form>");
myNewWindow.document.write("</body>");
myNewWindow.document.write("</html>");
myNewWindow.document.close();
}