// Caching Hack for IE6 Background-CSS-Images

try {
  document.execCommand("BackgroundImageCache", false, true);

} catch(err) {}


// Allgemein

function openBrWindow(theURL,winName,features) {
	win = window.open(theURL,winName,features);
	win.focus();
}
