<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1029231" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1029231</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171658</link>
    <description> &lt;p&gt;You do realize that those popups will be blocked by SP2.....&lt;/p&gt;
&lt;p&gt;and Firefox as well...&lt;/p&gt;
 </description>
     <pubDate>Tue, 24 May 2005 14:40:45 +0000</pubDate>
 <dc:creator>techniner</dc:creator>
 <guid isPermaLink="false">comment 1171658 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171182</link>
    <description> &lt;p&gt;Popups are fine, just do NOT use chromelss windows, &lt;del&gt;Service pack 2 for XP made chromeless windows not work anymore.&lt;/del&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 15 May 2005 20:15:28 +0000</pubDate>
 <dc:creator>Roo</dc:creator>
 <guid isPermaLink="false">comment 1171182 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171175</link>
    <description> &lt;p&gt;Pop up blockers shoukd block pop-ups the user does not trigger. While If the user does something to trigger it. Then it will work.&lt;br /&gt;
target=&quot;_blank&quot; will not allow you to take out tool bars you will have to use window.open();&lt;/p&gt;
 </description>
     <pubDate>Sun, 15 May 2005 16:08:44 +0000</pubDate>
 <dc:creator>bja888</dc:creator>
 <guid isPermaLink="false">comment 1171175 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171158</link>
    <description> &lt;p&gt;While target=&quot;_blank&quot; will open a new window it doesn&#039;t answer the original question.&lt;/p&gt;
&lt;p&gt;Yes some types of pop-up code are distinctly unfriendly to javascript disabled user agents. However it is reasonably simple to code one that is a sizeable new window &lt;strong&gt;and&lt;/strong&gt; will degrade gracefully in JS disabled UAs to a simple link.&lt;br /&gt;
This code in the head (in script tags) or in a linked external .js file (preferred)&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;// javascript popup sizeable window&lt;br /&gt;function NewWindow(mypage, myname, w, h, scrolling) {&lt;br /&gt;var winl = (screen.width - w) / 2;&lt;br /&gt;var wint = (screen.height - h) / 2;&lt;br /&gt;winprops = &amp;#039;height=&amp;#039;+ h +&amp;#039;,width=&amp;#039;+ w +&amp;#039;,top=&amp;#039;+ wint +&amp;#039;,left=&amp;#039;+ winl +&amp;#039;,scrollbars=&amp;#039;+ scrolling +&amp;#039;,resizable=&amp;#039;+&amp;#039;no&amp;#039;+&amp;#039;,menubar=&amp;#039;+&amp;#039;no&amp;#039;&lt;br /&gt;win = window.open(mypage, myname, winprops)&lt;br /&gt;if (parseInt(navigator.appVersion) &amp;gt;= 4) { win.window.focus(); }&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;a href=&amp;quot;URI&amp;quot; onClick=&amp;quot;NewWindow(this.href,&amp;#039;names&amp;#039;,&amp;#039;330&amp;#039;,&amp;#039;350&amp;#039;,&amp;#039;no&amp;#039;);return false;&amp;quot;&amp;gt;Anchor Text&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;then to make it so it doesn&#039;t simply become an orphaned page in the SERPs add this code to the pop-up page&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;amp;gt;&lt;br /&gt;&amp;lt;!--&lt;br /&gt;var winname = window.name;&lt;br /&gt;if (winname == &amp;quot;names&amp;quot;)&lt;br /&gt;{&lt;br /&gt;document.write(&amp;quot;&amp;lt;a href=&amp;#039;&amp;#039; onClick=&amp;#039;window.close()&amp;#039;&amp;gt;Click here to close the window.&amp;lt;/a&amp;gt;&amp;quot;)&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;document.write(&amp;quot;This page is seen out of context click below for&amp;lt;br&amp;gt;the &amp;quot;)&lt;br /&gt;document.write(&amp;quot;&amp;lt;a href=&amp;#039;site_URI&amp;#039;&amp;gt;Anchor Text&amp;lt;/a&amp;gt;&amp;quot;)&lt;br /&gt;}&lt;br /&gt;//--&amp;gt;&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;This code is not affected by XP SP2 and will bypass most blockers because it is a user action to generate the pop-up.&lt;/p&gt;
 </description>
     <pubDate>Sun, 15 May 2005 09:20:19 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1171158 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171133</link>
    <description> &lt;p&gt;It&#039;s excessively simple to make that pop-up using Javascript. But if you want it to be cross-platform the best that I can do for you is tell you to put a target=&quot;_blank&quot; argument into your &lt;a&gt; tag. You might be able to find a value for the target that changes the way it all works a little. I don&#039;t really know all possible target values.&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 May 2005 22:25:16 +0000</pubDate>
 <dc:creator>Assassin</dc:creator>
 <guid isPermaLink="false">comment 1171133 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171100</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;chrishirst wrote:&lt;/strong&gt; &lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex8/chromeless.htm&quot; class=&quot;bb-url&quot;&gt;Chromeless Window&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Avoid this. It&#039;s a usability sin. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Anyhow, it&#039;s not properly cross-platform; you&#039;d have to provide some kind of redundancy to make content accessible in Javascript-restriced or -disabled browsers.&lt;/p&gt;
&lt;p&gt;Don&#039;t use popups if a simpler alternative will work. Few are the times when popups are necessary, useful and functional. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 May 2005 10:44:10 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1171100 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171091</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://www.dynamicdrive.com/dynamicindex8/chromeless.htm&quot; class=&quot;bb-url&quot;&gt;Chromeless Window&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 May 2005 09:02:06 +0000</pubDate>
 <dc:creator>chrishirst</dc:creator>
 <guid isPermaLink="false">comment 1171091 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/new-windows#comment-1171088</link>
    <description> &lt;p&gt;try search for popup &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 May 2005 22:44:53 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1171088 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
