 function picWin(x) {
 
  xImage=new Array (12)
  xImage[0] = "images/photos/cottage_dw.jpg"
  xImage[1] = "images/photos/livingroom.jpg"
  xImage[2] = "images/photos/kitchen.jpg"
  xImage[3] = "images/photos/harbor_04.jpg"
  xImage[4] = "images/photos/bedroom.jpg"
  xImage[5] = "images/photos/store.jpg"
  xImage[6] = "images/photos/us_hall.jpg"
  xImage[7] = "images/photos/cottage.jpg"
  xImage[8] = "images/photos/beach.jpg"
  xImage[9] = "images/photos/school.jpg"
  xImage[10] = "images/photos/fire.jpg"
  xImage[11] = "images/photos/window.jpg"

 
  xText=new Array (12)
  xText[0] = "Cozy Harbor Cottage (Right)"
  xText[1] = "Cozy Harbor Cottage - Living Room"
  xText[2] = "Cozy Harbor Cottage - Kitchen"
  xText[3] = "View of Cozy Harbor from Cottage"
  xText[4] = "Cozy Harbor Cottage - Front Bedroom"
  xText[5] = "Southport General Store<br>(Five minute walk)"
  xText[6] = "Cozy Harbor Cottage - Upstairs Hall"
  xText[7] = "Cozy Harbor Cottage"
  xText[8] = "Hendricks Head Beach<br>(Five minute walk)"
  xText[9] = "Southport School Playground<br>(Five minute walk)"
  xText[10] = "Southport Fire Department"
  xText[11] = "Cozy Harbor Cottage - Living Room"
  
  thisPic=xImage[x];
  thisText=xText[x];
         
 newWindow = window.open('', 'picWin', 'toolbar=no,location=no,scrollbars=no,resizable=no,width=500,height=475,top=5,left=5')
 newWindow.document.write("<HTML><HEAD><TITLE>Cozy Harbor Cottage</TITLE><link rel='stylesheet' type='text/css' href='cozyharborcottage.css'></HEAD><body bgcolor='#FFFFCC' text='#1E4654' link='#000080'>")
 newWindow.document.write("<div><p align='center'><img border='0' src='" +thisPic+ "' alt='Image Loading'></p>")
 newWindow.document.write("<p class='description'>" +thisText+ "</p>")
 newWindow.document.write("</div></BODY></HTML>")
}

 //Closes pop up on main window focus
 //Trigger in body tag

var newWindow = null;
 function closeWindow() {
  if (newWindow) {
   newWindow.close();
   }
 }