<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marcus Nyberg &#187; Programmering</title>
	<atom:link href="http://www.marcusnyberg.com/category/programmering/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marcusnyberg.com</link>
	<description>Digital and dangerous</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:00:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to create a printerqueu with .NET and WMI</title>
		<link>http://www.marcusnyberg.com/2010/01/12/how-to-create-a-printerqueu-with-net-and-wmi/</link>
		<comments>http://www.marcusnyberg.com/2010/01/12/how-to-create-a-printerqueu-with-net-and-wmi/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 11:33:22 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/?p=392</guid>
		<description><![CDATA[This is an example of how you create a printerqueue with .NET and WMI (Windows Management Instrumentation). A list of properties can be found at MSDN Win32_Printer Other topics: How to install printerdrivers with wmi and VB.NET How to create TCP/IP printerports with .NET Imports System.Management Dim shared as Boolean = true Try Dim mp [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example of how you create a printerqueue with .NET and WMI (Windows Management Instrumentation).  </p>
<p>A list of properties can be found at <a href="http://msdn.microsoft.com/en-us/library/aa394363%28VS.85%29.aspx">MSDN Win32_Printer</a></p>
<p>Other topics:<br />
<a href="http://www.marcusnyberg.com/2009/11/23/install-printerdrivers-wmi/">How to install printerdrivers with wmi and VB.NET</a><br />
<a href="http://www.marcusnyberg.com/2009/12/11/install-printerports-with-wmi-and-vb-net/">How to create TCP/IP printerports with .NET</a></p>
<pre name="code" class="vb.net">
Imports System.Management

Dim shared as Boolean = true

Try
 Dim mp As ManagementPath = New ManagementPath("Win32_Printer")
 Dim co As ConnectionOptions = New ConnectionOptions()
 co.EnablePrivileges = True
 co.Impersonation = ImpersonationLevel.Impersonate

 Dim ms As ManagementScope = New ManagementScope("\\" + Environment.MachineName + "\root\cimv2", co)

 Dim printerObject As ManagementObject = New ManagementClass(ms, mp, Nothing).CreateInstance()
 printerObject("PortName") = "IP_192.168.0.2"
 printerObject("DriverName") = "DriverName"
 printerObject("DeviceID") = "queuename"
 printerObject("Location") = "Placement of printer"
 printerObject("Comment") = "Some comments"

 If (shared) Then
  printerObject("Shared") = True
  printerObject("ShareName") = "Sharename"
  'printerObject("Published") = False ' Publish printer
 End If

 Dim options As PutOptions = New PutOptions()
 options.Type = PutType.UpdateOrCreate
 printerObject.Put(options)

Catch ex As Exception
 ' Do something
End Try
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2010/01/12/how-to-create-a-printerqueu-with-net-and-wmi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install printerports with WMI and VB.NET</title>
		<link>http://www.marcusnyberg.com/2009/12/11/install-printerports-with-wmi-and-vb-net/</link>
		<comments>http://www.marcusnyberg.com/2009/12/11/install-printerports-with-wmi-and-vb-net/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 14:06:17 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[WMI]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/?p=347</guid>
		<description><![CDATA[This is an example of how you install TCP/IP printerports with .NET and WMI (Windows Management Instrumentation). A list of properties can be found at MSDN Win32_TCPIPPrinterPort Other topics: How to install printerdrivers with wmi and VB.NET How to create a printerqueu with .NET and WMI Imports System.Management Try Dim mp As ManagementPath = New [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example of how you install TCP/IP printerports with .NET and WMI (Windows Management Instrumentation).  </p>
<p>A list of properties can be found at <a href="http://msdn.microsoft.com/en-us/library/aa394492%28VS.85%29.aspx">MSDN Win32_TCPIPPrinterPort</a></p>
<p>Other topics:<br />
<a href="http://www.marcusnyberg.com/2009/11/23/install-printerdrivers-wmi/">How to install printerdrivers with wmi and VB.NET</a><br />
<a href="http://www.marcusnyberg.com/2010/01/12/how-to-create-a-printerqueu-with-net-and-wmi/">How to create a printerqueu with .NET and WMI</a></p>
<pre name="code" class="vb.net">
Imports System.Management

Try
  Dim mp As ManagementPath = New ManagementPath("Win32_TCPIPPrinterPort")
  Dim co As ConnectionOptions = New ConnectionOptions()
  co.EnablePrivileges = True

  Dim ms As ManagementScope = New ManagementScope("\\" + Environment.MachineName + "\root\cimv2", co)

  Dim port As ManagementObject = New ManagementClass(ms, mp, Nothing).CreateInstance()
  port.SetPropertyValue("Name", "portname")
  port.SetPropertyValue("Protocol", 1)
  port.SetPropertyValue("HostAddress", "10.15.12.12")
  port.SetPropertyValue("PortNumber", "9100")

  Dim po As PutOptions = New PutOptions()
  po.UseAmendedQualifiers = True
  po.Type = PutType.UpdateOrCreate
  port.Put(po)
Catch ex As Exception
  ' do something
End Try
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2009/12/11/install-printerports-with-wmi-and-vb-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install printerdrivers with WMI and VB.NET</title>
		<link>http://www.marcusnyberg.com/2009/11/23/install-printerdrivers-wmi/</link>
		<comments>http://www.marcusnyberg.com/2009/11/23/install-printerdrivers-wmi/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:26:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[WMI]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/?p=310</guid>
		<description><![CDATA[This is an example of how you install printerdrivers with .NET and WMI (Windows Management Instrumentation). Most examples on the Internet shows how this can be done with vbscript, printui.dll and such&#8230; A list of properties can be found at MSDN Win32_PrinterDriver Other topics: How to install printerports with WMI and VB.NET How to create [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example of how you install printerdrivers with .NET and WMI (Windows Management Instrumentation). Most examples on the Internet shows how this can be done with vbscript, printui.dll and such&#8230;</p>
<p>A list of properties can be found at <a href="http://msdn.microsoft.com/en-us/library/aa394366(VS.85).aspx">MSDN Win32_PrinterDriver</a></p>
<p>Other topics:<br />
<a href="http://www.marcusnyberg.com/2009/12/11/install-printerports-with-wmi-and-vb-net/">How to install printerports with WMI and VB.NET</a><br />
<a href="http://www.marcusnyberg.com/2010/01/12/how-to-create-a-printerqueu-with-net-and-wmi/">How to create a printerqueu with .NET and WMI</a></p>
<pre name="code" class="vb.net">
Imports System.Management

Dim infPath  as String = "c:\driver\printerdriver.inf"
Dim mp As ManagementPath = New ManagementPath("Win32_PrinterDriver")

Dim co As ConnectionOptions = New ConnectionOptions()
co.EnablePrivileges = True

Dim ms As ManagementScope = New ManagementScope("\\" + Environment.MachineName + "\root\cimv2", co)

Dim mcPrinterDriver As New ManagementClass(ms, mp, Nothing)
mcPrinterDriver.SetPropertyValue("Name", "drivername")
mcPrinterDriver.SetPropertyValue("SupportedPlatform", "Windows NT x86") ' x86-architecture
'mcPrinterDriver.SetPropertyValue("SupportedPlatform", "Windows x64") ' x64-architecture
mcPrinterDriver.SetPropertyValue("Version", 3)
mcPrinterDriver.SetPropertyValue("FilePath", System.IO.Path.GetDirectoryName(infPath))
mcPrinterDriver.SetPropertyValue("InfName", infPath)

Dim inParams As System.Management.ManagementBaseObject = Nothing
inParams = mcPrinterDriver.GetMethodParameters("AddPrinterDriver")
inParams("DriverInfo") = CType(mcPrinterDriver, System.Management.ManagementBaseObject)
Dim outParams As System.Management.ManagementBaseObject = mcPrinterDriver.InvokeMethod("AddPrinterDriver", inParams, Nothing)

Dim uiReturnValue As UInteger = System.Convert.ToUInt32(outParams.Properties("ReturnValue").Value)
</pre>
<p>I have tested this in Windows XP, Windows 7 and Windows 2008R2. Make sure your account has privileges to install drivers.</p>
<p>On Windows XP the drivers are installed physically to:<br />
C:\WINNT\system32\spool\drivers</p>
<p>And in the registry:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environments</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2009/11/23/install-printerdrivers-wmi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sun Certifierad Java Programmerare (SCJP)</title>
		<link>http://www.marcusnyberg.com/2009/03/23/sun-certifierad-java-programmerare-scjp/</link>
		<comments>http://www.marcusnyberg.com/2009/03/23/sun-certifierad-java-programmerare-scjp/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 15:46:44 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Programmering]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/?p=196</guid>
		<description><![CDATA[Det har inte blivit något skrivet här på sistone eftersom jag pluggat frenetiskt de senaste veckor för att certifiera mig inom programmeringsspråket Java. Idag skrev jag provet hos Cornerstone i Sundsvall och klarade det. Jag fick 68% rätt på de 72 frågorna, där gränsen var 59%. Yippie, fy fan vad jag fick slita&#8230; Nu är [...]]]></description>
			<content:encoded><![CDATA[<p>Det har inte blivit något skrivet här på sistone eftersom jag pluggat frenetiskt de senaste veckor för att certifiera mig inom programmeringsspråket Java. Idag skrev jag provet hos Cornerstone i Sundsvall och klarade det. Jag fick 68% rätt på de 72 frågorna, där gränsen var 59%. Yippie, fy fan vad jag fick slita&#8230;</p>
<p>Nu är jag alltså <a href="http://www.sun.com/training/certification/java/scjp.xml" target="_blank">certifierad java utvecklare</a> enligt Sun. Nästa mål är att certifiera mig som <a href="http://www.microsoft.com/learning/mcp/mcts/" target="_blank">Microsoft Certified Technology Specialist (MCTS)</a> i .NET Framework 2.0.</p>
<p>Detta ska firas i helgen!</p>
<p><img src="http://www.marcusnyberg.com/wp-content/uploads/2009/03/champagnebottle.jpg" alt="champagnebottle" title="champagnebottle" width="281" height="400" class="alignnone size-full wp-image-198" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2009/03/23/sun-certifierad-java-programmerare-scjp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confirm javascript on .NET Linkbutton in datagrids</title>
		<link>http://www.marcusnyberg.com/2008/05/21/confirm-javascript-on-net-linkbutton-in-datagrids/</link>
		<comments>http://www.marcusnyberg.com/2008/05/21/confirm-javascript-on-net-linkbutton-in-datagrids/#comments</comments>
		<pubDate>Wed, 21 May 2008 12:37:03 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/2008/05/21/confirm-javascript-on-net-linkbutton-in-datagrids/</guid>
		<description><![CDATA[Today I was struck with some really weird behaviour from a LinkButton in a Datagrid. I could not get the the confirm() javascript to fire. My code-behind was something like this: LinkButton lb = ((LinkButton)dgItem.FindControl(&#8221;lb&#8221;)); lb.Attributes["onClick"] = &#8221;return confirm(&#8216;Do you really want to do that?&#8217;);&#8221;; I dont really know why the onClick confirm-box does not [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was struck with some really weird behaviour from a LinkButton in a Datagrid. I could not get the the confirm() javascript to fire. My code-behind was something like this:</p>
<p class="kod">
LinkButton lb = ((LinkButton)dgItem.FindControl(&#8221;lb&#8221;));<br />
lb.Attributes["onClick"] = &#8221;return confirm(&#8216;Do you really want to do that?&#8217;);&#8221;;
</p>
<p>I dont really know why the onClick confirm-box does not fire before the href PostBack. However, the solution was to put the LinkButton inside a span and put the onClick attribute on the span.</p>
<p class="kod">
// Web page<br />
&lt;span runat=&quot;server&quot; id=&quot;spanLb&quot;&gt;<br />
&lt;Linkbutton stuff/&gt;<br />
&lt;/span&gt;
</p>
<p class="kod">
//Code-behind<br />
HtmlControl spanLb = ((HtmlControl)dgItem.FindControl(&#8221;spanLb&#8221;));<br />
spanLb.Attributes["onClick"] = &#8221;return confirm(&#8216;Do you really want to do that?&#8217;);&#8221;;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2008/05/21/confirm-javascript-on-net-linkbutton-in-datagrids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip tags from a string</title>
		<link>http://www.marcusnyberg.com/2008/05/21/strip-tags-from-a-string/</link>
		<comments>http://www.marcusnyberg.com/2008/05/21/strip-tags-from-a-string/#comments</comments>
		<pubDate>Wed, 21 May 2008 12:14:24 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/2008/05/21/strip-tags-from-a-string/</guid>
		<description><![CDATA[It is often useful to have a way to strip html or other tags from a string. Php has the strip_tags function. Stripping tags could be done in .NET with the following code that returns the stripped string: public static string StripTags(string str) { return Regex.Replace(str, @&#8221;&#8221;, string.Empty); }]]></description>
			<content:encoded><![CDATA[<p>It is often useful to have a way to strip html or other tags from a string. Php has the <a href="http://se.php.net/manual/en/function.strip-tags.php">strip_tags</a> function. Stripping tags could be done in .NET with the following code that returns the stripped string:</p>
<p class="kod">
	public static string StripTags(string str)<br />
	{<br />
		return Regex.Replace(str, @&#8221;<(.|\n)*?>&#8221;, string.Empty);<br />
	}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2008/05/21/strip-tags-from-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>firstChild and nextSibling differences between Firefox and Explorer</title>
		<link>http://www.marcusnyberg.com/2008/02/28/firstchild-and-nextsibling-differences-between-firefox-and-explorer/</link>
		<comments>http://www.marcusnyberg.com/2008/02/28/firstchild-and-nextsibling-differences-between-firefox-and-explorer/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 12:20:11 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[Programmering]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/2008/02/28/firstchild-and-nextsibling-differences-between-firefox-and-explorer/</guid>
		<description><![CDATA[This post describes a weird difference in how Internet Explorer and Firefox handles the Document Object Model (DOM). In my case I got different browser-behaviour when using firstChild and nextSibling in a javascript. The problem is that the Firefox DOM does not ignore line breaks and whitespaces while IE does. Instead of using firstChild and [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://www.agavegroup.com/?p=32">post</a> describes a weird difference in how Internet Explorer and Firefox handles the Document Object Model (DOM). In my case I got different browser-behaviour when using firstChild and nextSibling in a javascript. The problem is that the Firefox DOM does not ignore line breaks and whitespaces while IE does.</p>
<p>Instead of using firstChild and nextSibling you can use these functions (look below) that searches for the correct element in both major browsers.</p>
<p>Use getNextSibling(element) instead of element.nextSibling.<br />
Use getFirstChild(element) instead of element.firstChild.</p>
<p class="kod">
function getNextSibling(startBrother)<br />
{<br />
  endBrother=startBrother.nextSibling;<br />
  while(endBrother.nodeType!=1)<br />
  {<br />
    endBrother = endBrother.nextSibling;<br />
  }<br />
  return endBrother;<br />
}
</p>
<p class="kod">
function getFirstChild(elm)<br />
{<br />
  if ( !elm.childNodes.length )<br />
  {<br />
    return;<br />
  }<br />
  var children = elm.childNodes.length;<br />
  for ( var i = 0; i <= children; ++i )<br />
  {<br />
    if ( elm.childNodes[i].nodeType == 1 )<br />
    {<br />
      return elm.childNodes[i];<br />
    }<br />
  }<br />
  return;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2008/02/28/firstchild-and-nextsibling-differences-between-firefox-and-explorer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Submitta asp.NET formulär med enter-knappen</title>
		<link>http://www.marcusnyberg.com/2007/12/13/submitta-aspnet-formular-med-enter-knappen/</link>
		<comments>http://www.marcusnyberg.com/2007/12/13/submitta-aspnet-formular-med-enter-knappen/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 15:10:31 +0000</pubDate>
		<dc:creator>marcus</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/2007/12/13/submitta-aspnet-formular-med-enter-knappen/</guid>
		<description><![CDATA[En klassisk bugg i asp.NET (1.1 åtminstone) är att formulär med endast en textruta och en submit-knapp inte submittas då man fyller i rutan och trycker på enter-tangenten. Eller jo, sidan submittas men eventet för submit-knappen körs inte. Lösningen är enkel, men väldigt svår då man inte vet om att det är en bugg. Det [...]]]></description>
			<content:encoded><![CDATA[<p>En klassisk bugg i asp.NET (1.1 åtminstone) är att formulär med endast en textruta och en submit-knapp inte submittas då man fyller i rutan och trycker på enter-tangenten. Eller jo, sidan submittas men eventet för submit-knappen körs inte. Lösningen är enkel, men väldigt svår då man inte vet om att det är en bugg. Det räcker med att man skapar en osynlig textruta (input). En mer utförlig förklaring till fenomenet finns <a href="http://aspnet.4guysfromrolla.com/articles/060805-1.aspx" target="_blank">här</a>.</p>
<p>Exempel:</p>
<p class="kod"> &lt;input type=&#8221;text&#8221; style=&#8221;display:none&#8221;/&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2007/12/13/submitta-aspnet-formular-med-enter-knappen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus till komponent vid postback utan SmartNavigation</title>
		<link>http://www.marcusnyberg.com/2007/04/11/test/</link>
		<comments>http://www.marcusnyberg.com/2007/04/11/test/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 13:50:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programmering]]></category>

		<guid isPermaLink="false">http://www.marcusnyberg.com/2007/04/11/test/</guid>
		<description><![CDATA[Ett problem med web forms är att dom tappar focus då man gör en postback. Man kan däremot använda SmartNavigation för att lösa detta, men det finns situationer då detta inte fungerar tillfredställande. Då kan man använda sig av denna kodsnutt som sätter focus på den komponent som orsakade postbacken. Lägg in i din Page_Load: [...]]]></description>
			<content:encoded><![CDATA[<p>Ett problem med web forms är att dom tappar focus då man gör en postback. Man kan däremot använda SmartNavigation för att lösa detta, men det finns situationer då detta inte fungerar tillfredställande. Då kan man använda sig av denna kodsnutt som sätter focus på den komponent som orsakade postbacken. </p>
<p>Lägg in i din Page_Load:</p>
<div class="kod">
if(Page.IsPostBack)<br />
{<br />
	SetFocusPostBackControl(this);<br />
}
</div>
<p>Samt lägg till metoden:</p>
<div class="kod">
///<br />
/// Sätter fokus vid postback på den kontroll som hade focus<br />
///<br />
///<br />
public void SetFocusPostBackControl(System.Web.UI.Page webPage)<br />
{<br />
	string[] ctlPostBack;</p>
<p>	ctlPostBack = webPage.Page.Request.Form.GetValues(&#8221;__EVENTTARGET&#8221;);<br />
	if (ctlPostBack != null &#038;&#038; ctlPostBack.Length > 0)<br />
	{<br />
		string ctlUniqueId;<br />
		ctlUniqueId = ctlPostBack[0];<br />
		System.Web.UI.Control findControl = webPage.Page.FindControl(ctlUniqueId);<br />
		if ((findControl != null) &#038;&#038;<br />
			(findControl is DropDownList ||<br />
			findControl is TextBox ||<br />
			findControl is RadioButton ||<br />
			findControl is RadioButtonList))<br />
		{<br />
			string ctlClientId;<br />
			ctlClientId = findControl.ClientID;<br />
			string jScript;<br />
			jScript = &#8221;&#8221;;;</p>
<p>			webPage.Page.RegisterStartupScript(&#8221;focus&#8221;,jScript );</p>
<p>		}<br />
	}<br />
}
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.marcusnyberg.com/2007/04/11/test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
