function mapka(src, w, h, title){
	w=800;
	h=600;
noweOkienko = null;
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=450;
}
//if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"

var t=new Date();

 noweOkienko = window.open("",t.valueOf(),ustawienia, title);
//}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
"<html><head>\n" 
+ "<title>" + title + "</title>\n"
+ "<meta http-equiv=\"refresh\" content=\"0;url=http://www.dojazd.pl/digitalart\">\n"
+ "<style><!--\n"
+ "body{background-repeat:no-repeat}\n"
+ "--></style>\n"
+ "</head>\n"
+ "<body background=" + src + " topmargin=0 leftmargin=0></body>\n"
+ "</html>");
noweOkienko.document.close();
noweOkienko.focus();
}
