function TrimFileName(myURL){
 //URL = "http://www.florida-domizil.de/pre/objekte/angebote_anlage_haus.htm";
 //document.write(myURL + "<br>");
 var  URL_part = myURL.split("/");
 //document.write("Dateiname ist: " + URL_part[URL_part.length-1] + "<br>");
 myURL = URL_part[URL_part.length-1];
 URL_part = myURL.split(".");
 // document.write("Dateiname ist: " + URL_part[0]);
 return URL_part[0];
 }


var win=null;
function PrintWindow(mypage,myname,w,h,pos,infocus){
// Aufgabe: Ausdruck des aktuellen Fensters
mypage = document.URL + "?doprint=doprint";
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=20;mytop=20}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
win=window.open(mypage,myname,settings);
win.focus();
win.print();
setTimeout('win.close()', 1000);
}
