// JavaScript Document
function vergroessern(imgurl, breite, hoehe, titel) {
MeinFenster = window.open("", "Details", 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+breite+',height='+hoehe+',screenX=10,screenY=10,top=10,left=10');
MeinFenster.document.clear();
MeinFenster.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="http://www.skulpturenland.de/css/screen.css" type="text/css" media="screen" title="Standard" /><title>'+titel+'</title></head><body><center><strong><br />Hermann W. Grates - Haus-, Garten- und Wandskulpturen</strong><br /><br /><img src="'+imgurl+'" vspace="10"/><br />'+titel+'</center></body></html>');
MeinFenster.document.close();
MeinFenster.resizeTo(breite,hoehe);
MeinFenster.focus();
}

// -->