// JavaScript Document



function openImage(img, w, h)
{
    
	wndwimglarge = window.open('', '','width='+w+',height='+h+',toolbar=no,scrollbars=no,menubnar=no,status=no,directories=no,location=no');
  
	wndwimglarge.document.open();
	wndwimglarge.document.write("<html>");
	wndwimglarge.document.write("<head>");
	wndwimglarge.document.write("<title>Villa Dante <\/title>");
	wndwimglarge.document.write("<style type=\'text/css\'>  #textclose { color: #808080; font-size: 10px; font-weight: bold; font-family: Verdana, Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular; background-color: none; text-decoration: none }<\/style>");
	wndwimglarge.document.write("<\/head>");
	wndwimglarge.document.write('<body leftmargin=\"0\" topmargin=\"10\" marginwidth=\"10\" marginheight=\"10\" scroll=\"no\">');
	wndwimglarge.document.write("<center><img src=\'"+img+"\' border=\'0\' alt=\'\'><br><br><a id=\'textclose\' href=\'javascript:self.close();\'>Schließen</a></center>");
	wndwimglarge.document.write("<\/body><\/html>");
	wndwimglarge.document.close();
}


function showImageLarge(img, w, h)
{
  
  neu = window.open("viewImageEnlarged.html", img, "width="+w+",height="+h+",resizable=no");
  /*neu = window.open("viewImageEnlarged.html", img, "width="+(w+40)+",height="+(h+40+40));*/
  
  neu.close;
  
}

