// JavaScript Document
function vergroessern(imgurl, breite, hoehe, titel) {
 MeinFenster = window.open("", "_blank", '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.write('<!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="css/editor_styles.css" type="text/css" media="screen" title="Standard" /><title>'+titel+'</title></head><body><center><strong><br />Winkens - Internationale Holzagentur</strong><br /><br />Parkett PARLAFLOOR - Holzarten / Sortierungen<br /><img src="'+imgurl+'" vspace="10"/><br />'+titel+'</center></body></html>');
MeinFenster.focus();
}
// -->
