Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/sifr/README.txt,v
retrieving revision 1.1.4.3
diff -u -p -r1.1.4.3 README.txt
--- README.txt	18 Aug 2007 14:50:47 -0000	1.1.4.3
+++ README.txt	26 Aug 2007 12:02:21 -0000
@@ -64,6 +64,40 @@ to the site theme.
   the web.
 
 
+-- TROUBLESHOOTING --
+
+Q: Why do sIFR links open in a new window instead of the current (_self)?
+
+A: This seems to be a bug in the sIFR Action Script. If you still experience
+   this bug and you are using the latest sIFR version available on
+   http://www.mikeindustries.com/sifr/, you need to
+   - alter the file dont_customize_me.as as described here
+   - and re-create your sIFR fonts.
+
+   In line 26 change:
+<code>
+function launchURL (index) {
+	launchURL_anchor = eval("sifr_url_"+index);
+	launchURL_target = eval("sifr_url_"+index+"_target");
+	getURL(launchURL_anchor,launchURL_target);
+}
+</code>
+
+   To:
+<code>
+function launchURL (index) {
+	launchURL_anchor = eval("sifr_url_"+index);
+	launchURL_target = eval("sifr_url_"+index+"_target");
+	if ( launchURL_target != undefined ) {
+		getURL(launchURL_anchor,launchURL_target);
+	}
+	else {
+		getURL(launchURL_anchor);
+	}
+}
+</code>
+
+
 -- CREDITS --
 
 sIFR module was
