function InsertFlash(file, id, width, height) {
document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"" +  width + "\" height=\"" + height + "\" id=\"" + id + "\" align=\"middle\">");
document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
document.write("<param name=\"movie\" value=\"" + file  + "\" />");
document.write("<param name=\"quality\" value=\"high\" />");
document.write("<param name=\"bgcolor\" value=\"#000000\" />");
document.write("<embed src=\"" + file + "\" quality=\"high\" bgcolor=\"#000000\" width=\"" + width + "\" height=\"" + height + "\" name=\"" + id + "\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
document.write("</object>");
}

function Info(tytul, opis, szerokosc, wysokosc) {
	config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szerokosc+',height='+wysokosc+''
	config += 'scrollbars=no,resizable=no'
	pop = window.open ("","pop",config)

	pop.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />');
	pop.document.write('</head><body style="text-align: left; background-color: #000000; font-family: verdana,sans-serif;">');
	pop.document.write('<div style="text-align: center;"><span style="font-size: 16px; color: #cccccc; font-weight: bold;">' + tytul + '</span></div><br />');
	pop.document.write('<span style="color: #999999; font-size: 11px; font-family: verdana, Helvetica, sans-serif;">'+ opis +'</span>');
	pop.document.write('<br /><a style="display:block; padding-top: 5px; font-size: 10px; text-align: center;" href="javascript:window.close();"><img style="border-style: none;" src="/images/grafika/zamknij.jpg" alt="" /></a>');
	pop.document.write('</body>');
	pop.document.write('</html>');
}

function Info2(tytul, opis, szerokosc, wysokosc, link) {
	config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+ szerokosc +',height=' + wysokosc;
	config += 'scrollbars=no,resizable=no'
	pop = window.open ("","pop",config)

	pop.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />');
	pop.document.write('</head><body style="text-align: left; background-color: #000000; font-family: verdana;">');
	pop.document.write('<div style="text-align: center;"><span style="color: ; font-size: 16px; color: #cccccc; font-weight: bold;">' + tytul + '</span></div><br />');
	pop.document.write('<span style="color: #999999; font-size: 11px; font-family: verdana, Helvetica, sans-serif;">'+ opis +'</span>');
	pop.document.write('<div style="text-align: center;"><br /><img src="' + link + '" /></div><br /><a style="display:block; padding-top: 5px; font-size: 10px; text-align: center;" href="javascript:window.close();"><img style="border-style: none;" src="/images/grafika/zamknij.jpg" alt="" /></a>');
	pop.document.write('</body>');
	pop.document.write('</html>');
}


