<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1011707" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1011707</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/java-vs-hmtl-open-new-window-attributes#comment-1067470</link>
    <description> &lt;p&gt;By the way - Java is different from JavaScript. Java is used for creating cross-browser programs such as applets where as JavaScript is used for client-side browser scripting. Just clearing that up.&lt;/p&gt;
 </description>
     <pubDate>Sat, 15 Jul 2000 16:22:07 +0000</pubDate>
 <dc:creator>Lloyd Hassell</dc:creator>
 <guid isPermaLink="false">comment 1067470 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/java-vs-hmtl-open-new-window-attributes#comment-1067469</link>
    <description> &lt;p&gt;Here is a window opener script that I have made. Enjoy:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;var windowFeaturesStr;&lt;br /&gt;&lt;br /&gt;function openWindow(URL,NAME,VARNAME,WIDTH,HEIGHT,POSX,POSY,LOCATION,MENUBAR,RESIZABLE,SCROLLBARS,STATUS,TOOLBAR) {&lt;br /&gt;&amp;nbsp;&amp;nbsp; windowFeaturesStr = &amp;quot;&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (WIDTH) windowFeaturesStr += &amp;quot;,width=&amp;quot; + WIDTH;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (HEIGHT) windowFeaturesStr += &amp;quot;,height=&amp;quot; + HEIGHT;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (POSX) windowFeaturesStr += &amp;quot;,left=&amp;quot; + POSX + &amp;quot;,screenX=&amp;quot; + POSX;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (POSY) windowFeaturesStr += &amp;quot;,top=&amp;quot; + POSY + &amp;quot;,screenY=&amp;quot; + POSY;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (LOCATION) windowFeaturesStr += &amp;quot;,location&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (MENUBAR) windowFeaturesStr += &amp;quot;,menubar&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (RESIZABLE) windowFeaturesStr += &amp;quot;,resizable&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (SCROLLBARS) windowFeaturesStr += &amp;quot;,scrollbars&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (STATUS) windowFeaturesStr += &amp;quot;,status&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (TOOLBAR) windowFeaturesStr += &amp;quot;,toolbar&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (windowFeaturesStr != &amp;quot;&amp;quot;) windowFeaturesStr = windowFeaturesStr.substring(1);&lt;br /&gt;&amp;nbsp;&amp;nbsp; if (VARNAME) eval(VARNAME) = window.open(URL,NAME,windowFeaturesStr);&lt;br /&gt;&amp;nbsp;&amp;nbsp; else window.open(URL,NAME,windowFeaturesStr);&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Sat, 15 Jul 2000 16:15:26 +0000</pubDate>
 <dc:creator>Lloyd Hassell</dc:creator>
 <guid isPermaLink="false">comment 1067469 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Attributes 101</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/java-vs-hmtl-open-new-window-attributes#comment-1067190</link>
    <description> &lt;p&gt;I had already posted this to your other question----&lt;/p&gt;
&lt;p&gt;If you wish to have a bit more control over the child window that is opened to display the picture, then you can use the following. &lt;/p&gt;
&lt;p&gt;In the head section, define a function such as: &lt;/p&gt;
&lt;p&gt;function display_me(url){&lt;br /&gt;
picture_win=window.open(url,&quot;picture_win&quot;,&quot; width=450,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resiza ble=no,left=50,top=50,screenX=50,screenY=50&quot;);&lt;br /&gt;
} &lt;/p&gt;
&lt;p&gt;Then in the link on your thumbnail use &lt;/p&gt;
&lt;p&gt;&lt;a&gt; &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Notes:&lt;br /&gt;
Keep the window.open definition on one continuous line, you avoid problems that way. &lt;/p&gt;
&lt;p&gt;Make sure you pass either a complete url or a relative url for the picture to the function. &lt;/p&gt;
&lt;p&gt;The window.open function is fairly self explanatory. You define the name of the window, the size, location, etc. The first field passed is the http link for the content, the second field is the window name (useful if you wish to refer to the window or close it from the parent window). The third defines the attributes of the new window (size, position, scrollbars or not, etc...) &lt;/p&gt;
&lt;p&gt;Hope this is useful&lt;/p&gt;
 </description>
     <pubDate>Wed, 12 Jul 2000 04:56:33 +0000</pubDate>
 <dc:creator>tazman</dc:creator>
 <guid isPermaLink="false">comment 1067190 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/java-vs-hmtl-open-new-window-attributes#comment-1067181</link>
    <description> &lt;p&gt;You can specify a specific window (target) to open a document in using HTML.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;doc.html&quot; target=&quot;_blank&quot;&gt;LINK&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;However if you want to specify the size of the window, the windows position, or other browser variants (tool bars, resize, etc) you’ll need to use JavaScript.&lt;/p&gt;
 </description>
     <pubDate>Wed, 12 Jul 2000 01:17:43 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1067181 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Easy....</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/java-vs-hmtl-open-new-window-attributes#comment-1067179</link>
    <description> &lt;p&gt;This&#039;d be a LOT easier if you contact me VIA ICQ.&lt;br /&gt;
38389521&lt;/p&gt;
 </description>
     <pubDate>Wed, 12 Jul 2000 00:42:04 +0000</pubDate>
 <dc:creator>TheGraphicsExperience</dc:creator>
 <guid isPermaLink="false">comment 1067179 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
