// Villa3604 JavaScript 

 function gallery()

   {

      var mywindow = window.open("/gallery/default.html","Gallery",

      "width=670,height=700,scrollbars=yes,toolbar=no,status=yes,resizable=yes,menubar=no,left=0, top=0");

   }



function DisplayImage(picURL,picWidth,picHeight,picTitle)

{

	newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+', height='+picHeight);

	newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>');

	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth, picHeight-newWindow.document.body.clientHeight);

	newWindow.focus();

}





