<?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>LurnWeb - Web Design and Development Blog</title>
	<atom:link href="http://www.lurnweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lurnweb.com</link>
	<description>The right place for the right web design and development tips, resources, scripts and tutorials</description>
	<lastBuildDate>Sat, 12 Jun 2010 14:11:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to fix height problem with floating DIVs</title>
		<link>http://www.lurnweb.com/130/how-to-fix-height-problem-with-floating-divs/</link>
		<comments>http://www.lurnweb.com/130/how-to-fix-height-problem-with-floating-divs/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 19:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[div float height problem]]></category>
		<category><![CDATA[fix div height problem]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/130/how-to-fix-height-problem-with-floating-divs/</guid>
		<description><![CDATA[You must have run into the problem of height property of a DIV not being active when it contains floating DIVs. This is because when you set the CSS property of a DIV to either float left or right, it starts floating to the respective direction and hence the height is not retained for the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F130%2Fhow-to-fix-height-problem-with-floating-divs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F130%2Fhow-to-fix-height-problem-with-floating-divs%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>You must have run into the problem of height property of a DIV not being active when it contains floating DIVs. This is because when you set the CSS property of a DIV to either float left or right, it starts floating to the respective direction and hence the height is not retained for the parent element.</p>
<p> <span id="more-130"></span>
<p>The following screenshot clearly demonstrates that the “Main” DIV does not extend with the other two DIVs, “Left” and “Right”.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/06/Snap2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Snap2" border="0" alt="Snap2" src="http://www.lurnweb.com/wp-content/uploads/2010/06/Snap2_thumb.png" width="441" height="182" /></a> </p>
<p>Fortunately, there is a simple trick to overcome this problem. If you set the CSS property “overflow” of the main DIV to “hidden” it will cause it to stretch the full height of the other two DIVs. This is shown in the screenshot below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/06/Snap1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Snap1" border="0" alt="Snap1" src="http://www.lurnweb.com/wp-content/uploads/2010/06/Snap1_thumb.png" width="441" height="180" /></a></p>
<p>The CSS for the above example is:</p>
<pre class="brush:css">.main {
	background-color: #666;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.main .left {
	background-color: #00c;
	float: left;
	height: 200px;
	width: 150px;
	padding: 5px;
}
.main .right {
	float: right;
	height: 200px;
	width: 150px;
	background-color: #093;
	padding: 5px;
}
body,td,th {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	color: #fff;
	font-weight: bold;
}</pre>
<p>And the corresponding HTML code:</p>
<pre class="brush:html">&lt;div class=&quot;main&quot;&gt;
&#160; &lt;div class=&quot;left&quot;&gt;Left Floating DIV&lt;/div&gt;
&#160;&#160;&#160; &lt;div class=&quot;right&quot;&gt;Right Floating DIV&lt;/div&gt;
&#160;&#160;&#160; Main DIV Content  &lt;/div&gt;</pre>
<p>Note the “overflow: hidden;” for the CSS rule “main”.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/130/how-to-fix-height-problem-with-floating-divs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Payoneer debit card blocked for transactions in Pakistan</title>
		<link>http://www.lurnweb.com/125/payoneer-debit-card-blocked-for-transactions-in-pakistan/</link>
		<comments>http://www.lurnweb.com/125/payoneer-debit-card-blocked-for-transactions-in-pakistan/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 09:37:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General Web Stuff]]></category>
		<category><![CDATA[master debit card payoneer]]></category>
		<category><![CDATA[payoneer blocked pakistan]]></category>
		<category><![CDATA[payoneer new choice card]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/125/payoneer-debit-card-blocked-for-transactions-in-pakistan/</guid>
		<description><![CDATA[IMPORTANT UPDATE! Payoneer has resolved the issue. They are issuing new Choice Debit Cards to their card holders. I received an email from them, confirming they have issued a new Choice Card at my address. This card will have no restriction, like cash withdrawl. Thanks Payoneer. At May4, 2010, I received this unfortunate email from [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F125%2Fpayoneer-debit-card-blocked-for-transactions-in-pakistan%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F125%2Fpayoneer-debit-card-blocked-for-transactions-in-pakistan%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>IMPORTANT UPDATE!</p>
<p>Payoneer has resolved the issue. They are issuing new Choice Debit Cards to their card holders. I received an email from them, confirming they have issued a new Choice Card at my address. This card will have no restriction, like cash withdrawl. Thanks Payoneer.</p>
<p>At May4, 2010, I received this unfortunate email from Payoneer:</p>
<blockquote><p>“<strong>Dear Customer,</strong></p>
<p>Due to a change in requirements from our regulators, as of June 1, 2010 Payoneer cards will be blocked for transactions in the countries listed by the US government as having strategic Anti Money Laundering (AML) deficiencies. This change will affect card usage in the following countries: Angola, Ecuador, Ethiopia, Pakistan, Turkmenistan and Sao Tome and Principe.</p>
<p><span id="more-125"></span></p>
<p>If your card is in use in one of the countries listed, we encourage you to use all funds by May 31, while transactions are still possible in these countries.</p>
<p>Please note that beyond May 31 your card will continue to be fully functional in all countries not banned by the US government, and we will be happy to load payments to the card without any change.</p>
<p>We apologize for the inconvenience and hope that the Payoneer card will continue to provide you with valuable service.</p>
<p>Please feel free to use our <a href="http://www.payoneer.com/EmailForm.aspx">Contact Us</a> page for any additional questions.</p>
<p>Sincerely,</p>
<p>Payoneer Customer Support”</p></blockquote>
<p>Indeed it was a great set back for all the coders who use Payoneer Master Debit Card to receive money from freelancing web sites like RentACoder.com, Elance.com, FreeLancer.com</p>
<p>But then a hope aroused when I received the following email from Payoneer at May 12, 2010:</p>
<blockquote><p><strong>Dear Waseem Khan,</strong></p>
<p>RentACoder is glad to provide you with the new Choice Prepaid MasterCard®, with higher daily withdrawal and spending limits, to replace your current Prepaid MasterCard.</p>
<p>Similar to your existing card, the new Choice Prepaid MasterCard is a debit card and can be used at ATMs, at stores and online.</p>
<p><strong>Choice MasterCard limits:</strong><br />
The daily ATM withdrawal limits is $2,500.<br />
The daily purchase limit (at stores/online) is: $2,500<br />
Total daily spending limit – $5,000</p>
<p><strong>This card will replace your existing Prepaid MasterCard.</strong></p>
<p>To order the new Choice card, please login to your Payoneer My Account at <a href="https://myaccount.payoneer.com/Login/Login.aspx">www.payoneer.com</a>, and request a new Choice Prepaid MasterCard.<br />
The new card will be shipped to you within a few days, without any shipping charges or Activation fee.</p>
<p><strong>Order your card within the next 30 days.</strong> You can use your current card until you get the new card. Your existing card will be closed within 2 months.</p>
<p><strong>Once you received the new card and activated it, Funds and services associated with your existing card will be transferred automatically to the new card.</strong></p>
<p><strong>Help and support</strong><br />
If you have any questions, please contact us at <a href="http://www.payoneer.com/EmailForm.aspx">Payoneer Contact Form</a><br />
We also have live online help at <a href="http://www.Payoneer.com">www.Payoneer.com</a><br />
Thank you,<br />
Customer Support<br />
<strong>Payoneer, Inc.</strong></p></blockquote>
<p>I immediately applied for the new Choice Card with the hope that it will resolve the issue but it was still unclear that the new choice card was above all restrictions or the restrictions in the banned countries like Pakistan remain intact. So I contacted Payoneer about this issue. Hence at May 25, 2010, I received the following reply from Payoneer customer support:</p>
<blockquote><p><strong>Subject:</strong> [WEB Form] Category: Card Usage, Subject: Other, Program: Rent A Coder</p>
<p>Dear Customer,</p>
<p>Thank you for contacting us.</p>
<p>We are currently in a process to be able to provide our service to Pakistan, please try again within 2 weeks.</p>
<p>Please feel free to contact us if you have any additional questions.</p>
<p>Sincerely,</p>
<p>Ray</p>
<p>Payoneer Customer Support</p></blockquote>
<p>At the time of writing this article, 6 business days have been passed. I  amd waiting and hope that they will come out with a solution. If you have any other update from Payoneer, please do not hesitate to post it in comments. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/125/payoneer-debit-card-blocked-for-transactions-in-pakistan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Slice a PSD</title>
		<link>http://www.lurnweb.com/108/how-to-slice-a-psd/</link>
		<comments>http://www.lurnweb.com/108/how-to-slice-a-psd/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 12:59:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[how to slice psd]]></category>
		<category><![CDATA[psd slicing]]></category>
		<category><![CDATA[slice image]]></category>
		<category><![CDATA[slice psd]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/108/how-to-slice-a-psd-to-be-used-in-psd-to-xhtml-conversion/</guid>
		<description><![CDATA[A comprehensive tutorial explaining step by step of how to effectively slice a PSD to be used in PSD to xHTML conversion. This tutorial is a detailed step by step guide to slice a PSD into images that can be used to build the xHTML web page. The PSD file that I have chosen is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F108%2Fhow-to-slice-a-psd%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F108%2Fhow-to-slice-a-psd%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>A comprehensive tutorial explaining step by step of how to effectively slice a PSD to be used in PSD to xHTML conversion.</p>
<p>This tutorial is a detailed step by step guide to slice a PSD into images that can be used to build the xHTML web page.<span id="more-108"></span></p>
<p>The PSD file that I have chosen is downloaded from a free web templates web site and is shown below.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/index.png"><img style="margin: 4px; display: inline; border-width: 0px;" title=" " src="http://www.lurnweb.com/wp-content/uploads/2010/03/index_thumb.png" border="0" alt=" " width="244" height="215" /></a></p>
<p><a title="Click here to download the PSD file." href="http://rapidshare.com/files/370279256/index.psd" target="_blank">Click here to download the PSD file.</a></p>
<p>Before you continue you must have Adobe PhotoShop installed on your system. I have used Adobe PhotoShop CS4, so if you have the CS4 version, it is more than good. Lets start by opening the PSD file in PhotoShop. Once opened, it will look like:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/1.png"><img style="display: inline; border-width: 0px;" title="1" src="http://www.lurnweb.com/wp-content/uploads/2010/03/1_thumb.png" border="0" alt="1" width="244" height="176" /></a></p>
<p>PhotoShop have a “Slice” tool, specially designed to slice images. You can select the “Slice” tool by right clicking the tools box on the left, starting from top to the tool number 5. This is shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/0.png"><img style="display: inline; border-width: 0px;" title="0" src="http://www.lurnweb.com/wp-content/uploads/2010/03/0_thumb.png" border="0" alt="0" width="218" height="147" /></a></p>
<p>With the “Slice” tool selected, we can now move to slice the PSD.  But first, uncheck the “Snap” option in the “View” menu at the top as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/10.png"><img style="display: inline; border-width: 0px;" title="10" src="http://www.lurnweb.com/wp-content/uploads/2010/03/10_thumb.png" border="0" alt="10" width="220" height="416" /></a></p>
<p>If the “Snap” option is checked, any selection you make using Slice tool, the PhotoShop will try to bind the selection to the boundary of the object layer and we do not want this.</p>
<p>Now starting from the logo on the top right. Drag mouse around the logo and make a selection as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/3.png"><img style="display: inline; border-width: 0px;" title="3" src="http://www.lurnweb.com/wp-content/uploads/2010/03/3_thumb.png" border="0" alt="3" width="293" height="169" /></a></p>
<p>Next, to get the background image for the menu under the logo, we need to slice the background red gradient image. As you can see, the menu text is on the top of the background gradient. We need to hide this text otherwise once we save the images, it will get merged with the gradient. This is to ensure that the menu is a text based not using images for the text. So click on the text “Home Page” on the first menu item. It will select the layer containing this text. Open the layers tab on the right by clicking on it and scroll through the layers’ list until you get a layer highlighted in blue color. This is the layer of the selected text. You can see an “Eye” icon left to the layer “Home Page”, click on this icon to hide the layer and you get the result like:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/4.png"><img style="display: inline; border-width: 0px;" title="4" src="http://www.lurnweb.com/wp-content/uploads/2010/03/4_thumb.png" border="0" alt="4" width="296" height="324" /></a></p>
<p>For high precision, you can zoom the view. Click the “Zoom” icon at the bottom of the tools to zoom it to 200% as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/5.png"><img style="display: inline; border-width: 0px;" title="5" src="http://www.lurnweb.com/wp-content/uploads/2010/03/5_thumb.png" border="0" alt="5" width="83" height="202" /></a></p>
<p>Now you can either use the scroll bars or you can use the “Hand” (the hand icon in the left tool bars) tool to bring the desired portion of the image to the screen.  The menu portion, zoomed to 200%, and brought to the main screen:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/6.png"><img style="display: inline; border-width: 0px;" title="6" src="http://www.lurnweb.com/wp-content/uploads/2010/03/6_thumb.png" border="0" alt="6" width="352" height="253" /></a></p>
<p>We now slice the menu background in a similar way as for the logo. This is shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/7.png"><img style="display: inline; border-width: 0px;" title="7" src="http://www.lurnweb.com/wp-content/uploads/2010/03/7_thumb.png" border="0" alt="7" width="310" height="109" /></a></p>
<p>You can see two images under each of the headings “Welcome to our company!” and “Our services”. We slice them too:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/11.png"><img style="display: inline; border-width: 0px;" title="11" src="http://www.lurnweb.com/wp-content/uploads/2010/03/11_thumb.png" border="0" alt="11" width="244" height="145" /></a></p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/12.png"><img style="display: inline; border-width: 0px;" title="12" src="http://www.lurnweb.com/wp-content/uploads/2010/03/12_thumb.png" border="0" alt="12" width="244" height="116" /></a></p>
<p>Next to the above images, on the right, the three dots arranged in a triangle, is an image and need to be sliced similarly as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/13.png"><img style="display: inline; border-width: 0px;" title="13" src="http://www.lurnweb.com/wp-content/uploads/2010/03/13_thumb.png" border="0" alt="13" width="317" height="162" /></a></p>
<p>The last images that needs to be sliced is the footer gradient image. We just need a vertical bar image, extended to full height of the footer background image and having a width of round about 5 to 10px. The reason that we are only taking a strip out of the whole image is that in xHTML, we can use this image as a background and can make it to repeat horizontally. This will give the same result with reduced image size. The sliced strip is shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/14.png"><img style="display: inline; border-width: 0px;" title="14" src="http://www.lurnweb.com/wp-content/uploads/2010/03/14_thumb.png" border="0" alt="14" width="299" height="133" /></a></p>
<p>Once, we have set up all the slices, it is now time to save these slices as individual images so they can be used to make the equivalent xHTML web page. In Adobe PhotoShop CS4, there is an option “Save for Web &amp; Devices…” under the “File” menu. This is shown as:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/15.png"><img style="display: inline; border-width: 0px;" title="15" src="http://www.lurnweb.com/wp-content/uploads/2010/03/15_thumb.png" border="0" alt="15" width="255" height="515" /></a></p>
<p>Click on the “Save for Web &amp; Devices…” and it will bring a window as depicted below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/16.png"><img style="display: inline; border-width: 0px;" title="16" src="http://www.lurnweb.com/wp-content/uploads/2010/03/16_thumb.png" border="0" alt="16" width="497" height="368" /></a></p>
<p>Here too, you can use the “Hand” tool to grab the image area you want to focus on main screen as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/17.png"><img style="display: inline; border-width: 0px;" title="17" src="http://www.lurnweb.com/wp-content/uploads/2010/03/17_thumb.png" border="0" alt="17" width="173" height="150" /></a></p>
<p>Using the “Hand” tool, the logo section is made visible which otherwise is hidden to the right.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/19.png"><img style="display: inline; border-width: 0px;" title="19" src="http://www.lurnweb.com/wp-content/uploads/2010/03/19_thumb.png" border="0" alt="19" width="496" height="366" /></a></p>
<p>Now select the “Slice Select” tool under the hand tool as shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/18.png"><img style="display: inline; border-width: 0px;" title="18" src="http://www.lurnweb.com/wp-content/uploads/2010/03/18_thumb.png" border="0" alt="18" width="174" height="200" /></a></p>
<p>With the “Slice Select” tool selected, click on the logo image “BUSINESS COMPANY”. A border appears around the image as soon as you click. This means the the current slice is now selected and you can change the options given at the right of the window.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/20.png"><img style="display: inline; border-width: 0px;" title="20" src="http://www.lurnweb.com/wp-content/uploads/2010/03/20_thumb.png" border="0" alt="20" width="298" height="145" /></a></p>
<p>While, other options are used seldom, the image type option needs customization. As you can see in the image below, there are image type options in the drop down list as GIF, JPEG, PNG-8, PNG-24 and WBMP. the common formats are JPEG and PNG-8. The choice of using any of the formats given depends on the color depth and the image size of the sliced image. Try to select different image formats given and at the same time check the image quality and its size (image size is given at the bottom left of the window). After hit and trial between the options JPEG, PNG-8 and PNG-24, I selected JPEG, since it produced the most reduced slice image size and good image quality as well.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/22.png"><img style="display: inline; border-width: 0px;" title="22" src="http://www.lurnweb.com/wp-content/uploads/2010/03/22_thumb.png" border="0" alt="22" width="499" height="177" /></a></p>
<p>As you can see the, the image size is 1.042K when JPEG is selected and is higher for all other options. You can see the image size at the bottom left corner of the window:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/23.png"><img style="display: inline; border-width: 0px;" title="23" src="http://www.lurnweb.com/wp-content/uploads/2010/03/23_thumb.png" border="0" alt="23" width="315" height="136" /></a></p>
<p>Now do the same for the the menu background image, the two images under the headings “Welcome to our company!” and “Our services” and the three dots triangle image.</p>
<p>The last image is that of the footer gradient image as shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/26.png"><img style="display: inline; border-width: 0px;" title="26" src="http://www.lurnweb.com/wp-content/uploads/2010/03/26_thumb.png" border="0" alt="26" width="101" height="156" /></a></p>
<p>Use PNG-24 option as it gives the best result.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/27.png"><img style="display: inline; border-width: 0px;" title="27" src="http://www.lurnweb.com/wp-content/uploads/2010/03/27_thumb.png" border="0" alt="27" width="244" height="129" /></a></p>
<p>Now click the “Save” button at the bottom right left to the “Cancel” button. This is show below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/28.png"><img style="display: inline; border-width: 0px;" title="28" src="http://www.lurnweb.com/wp-content/uploads/2010/03/28_thumb.png" border="0" alt="28" width="441" height="155" /></a></p>
<p>A “Save File” dialogue will appear. Make sure you select the “XHTML” option for the “Settings” and “All User Slices” for the “Slices” options. Provide “File name” of whatever you like or the name of your web site. I have put “mywebsite” so images will be stored as “mywebsite_1” and “mywebsite_2” etc.</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/29.png"><img style="display: inline; border-width: 0px;" title="29" src="http://www.lurnweb.com/wp-content/uploads/2010/03/29_thumb.png" border="0" alt="29" width="453" height="143" /></a></p>
<p>Click the “Save” button after providing the directory where you want to store the images. The resulting images are shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/30.png"><img style="display: inline; border-width: 0px;" title="30" src="http://www.lurnweb.com/wp-content/uploads/2010/03/30_thumb.png" border="0" alt="30" width="457" height="96" /></a></p>
<p>One last image remains, the image with the big red gradient and the pictures of two women and two men. There are several ways to slice these images, one way is to save the two men and two women image as a transparent background image and the red gradient image as another separate image. I have followed the other way. First remove all the other images, i.e. the logo image and the menu images/text from screen. You can removed these images either by selecting each image and hiding it through the layers panel as discussed earlier or you can simple select an image and press “Delete” on your keyboard. Please make sure that the arrow shaped icon is selected before you click on an image. This icon is the first in the tool bar at left. In case, you accidently delete the background gradient image press “CTRL + ALT + Z” on your keyboard to undo the action. The final product is shown below:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/31.png"><img style="display: inline; border-width: 0px;" title="31" src="http://www.lurnweb.com/wp-content/uploads/2010/03/31_thumb.png" border="0" alt="31" width="460" height="245" /></a></p>
<p>To get the image, we use the “Crop” tool. You can select the “Crop” tool from the same location as you did for the “Slice” tool. Right click the place from where you selected the “Slice” tool and select the “Crop” tool as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/32.png"><img style="display: inline; border-width: 0px;" title="32" src="http://www.lurnweb.com/wp-content/uploads/2010/03/32_thumb.png" border="0" alt="32" width="213" height="133" /></a></p>
<p>With the “Crop” tool selected, mark a rectangle around the image starting from the top and extending downwards, till the gradient image ends as shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/33.png"><img style="display: inline; border-width: 0px;" title="33" src="http://www.lurnweb.com/wp-content/uploads/2010/03/33_thumb.png" border="0" alt="33" width="463" height="186" /></a></p>
<p>The other areas of the image will fadeout. Click the “Check” sign on the top right to crop the image:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/34.png"><img style="display: inline; border-width: 0px;" title="34" src="http://www.lurnweb.com/wp-content/uploads/2010/03/34_thumb.png" border="0" alt="34" width="152" height="106" /></a></p>
<p>The result is shown:</p>
<p><a href="http://www.lurnweb.com/wp-content/uploads/2010/03/36.png"><img style="display: inline; border-width: 0px;" title="36" src="http://www.lurnweb.com/wp-content/uploads/2010/03/36_thumb.png" border="0" alt="36" width="426" height="315" /></a></p>
<p>Now save this image using the same procedure, click “Save for Web &amp; Devices…” in the “File” menu and choose the appropriate file format as done for the slices and click save.</p>
<p>The above image can be used as a background image while the logo and the menu can be put in an absolutely positioned DIV.</p>
<p>I next tutorial, I will create the xHTML web page out of those images. So keep visiting for the next tutorial. If you have any comments/suggestions/questions, please write them in the comment box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/108/how-to-slice-a-psd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Simple AJAX Library</title>
		<link>http://www.lurnweb.com/43/simple-ajax-library/</link>
		<comments>http://www.lurnweb.com/43/simple-ajax-library/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 11:32:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ajax class]]></category>
		<category><![CDATA[ajax library]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/43/simple-ajax-library/</guid>
		<description><![CDATA[Free simple AJAX library is an extremely light weight AJAX library with which you can make an AJAX call with only one line of code. Size: The size of the library is only 3 KB. Download: Download Simple AJAX Library Usage: You need to initiate an object of the Ajax class. The Ajax requires four [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F43%2Fsimple-ajax-library%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F43%2Fsimple-ajax-library%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Free simple AJAX library is an extremely light weight AJAX library with which you can make an AJAX call with only one line of code.</p>
<p><strong>Size:</strong><br />
The size of the library is only 3 KB.<span id="more-43"></span></p>
<p><strong>Download:</strong><a href="http://rapidshare.com/files/272513114/Simple_AJAX_Library_Web-Trick.info.rar"><br />
Download Simple AJAX Library</a></p>
<p><strong>Usage:</strong><br />
You need to initiate an object of the Ajax class. The Ajax requires four parameters.</p>
<p><strong>var AjaxObject = new Ajax([<em>string</em>] URL, [<em>string</em>] Method,  [<em>string</em>] Parameters, [<em>string</em>] Callback function, [<em>string</em>] Type of data returned);</strong></p>
<ul>
<li><strong>URL</strong>, is the URL string to which you want to make either GET or POST Ajax request. A sample string is “actions/login.php”.</li>
<li><strong>Method </strong>is the type of method by which you want to send data. This can be either “GET” or “POST”. If you want to send a large amount of data, I recommend using “POST” method.</li>
<li><strong>Parameters </strong>is the string containing the parameters to be sent to the server. Whether you choose, GET or POST method, the syntax of sending the parameters is same. For example, “username=waseem&amp;password=khan”</li>
<li><strong>Callback function</strong> is the name of the function which will be called when the data is returned from the server via the AJAX call. Please note that you must only write the name of the function like “sampleFunction” with out the parenthesis like “sampleFunction()” else it will not work. Then you have to define this function somewhere, preferably after the AJAX call. This function will accept one parameter which is the data returned from the server. An example of such a function is:<br />
<em>function sampleResponseFunction(retunedData)<br />
{<br />
// do something here with the retunedData<br />
}</em></li>
<li><strong>Type of data returned </strong>is the last parameter, this specifies the type of data you want to be returned via the AJAX. You can set it to either, “Text” or “XML”. The data type of the callback function parameter will be the either plain text or XML format.</li>
</ul>
<p>Sample code to make an AJAX call using the Simple AJAX library is as below:</p>
<pre class="brush:js">&lt;script type="text/javascript" language="javascript" src="../ajax.lib.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" language="javascript"&gt;

var ajax = new Ajax("ajax.server.php", "POST", "name=khan", seeTheResponse, "Text");
function seeTheResponse(response)
{
	alert(response);
}

&lt;/script&gt;</pre>
<p>If you have any difficulty using the library or have found any bug, please comment in the comment box. Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/43/simple-ajax-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movable DIV using JavaScript</title>
		<link>http://www.lurnweb.com/23/movable-div-using-javascript/</link>
		<comments>http://www.lurnweb.com/23/movable-div-using-javascript/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 13:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[movable div]]></category>
		<category><![CDATA[movable div using javascript]]></category>
		<category><![CDATA[moveable div]]></category>
		<category><![CDATA[moveable div using javascript]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/?p=23</guid>
		<description><![CDATA[How to make a DIV movable using JavaScript. An absolute positioned DIV can made movable by adding a bit of JavaScript logic. I have written a JavaScript to make a DIV movable, the size of the script is only 4KB. You can download the script with example: Download Movable Div Script The HTML for the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F23%2Fmovable-div-using-javascript%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F23%2Fmovable-div-using-javascript%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>How to make a DIV movable using JavaScript. An absolute positioned  DIV can made movable by adding a bit of JavaScript logic.</p>
<p>I have written a JavaScript to make a DIV movable, the size of the  script is only 4KB.</p>
<p>You can download the script with example:<span id="more-23"></span></p>
<div>
<div><a title="Download Movable Div Script  using JavaScript" href="http://rapidshare.com/files/181717501/moveable_div_using_javascript.zip" target="_blank">Download Movable Div Script</a></div>
</div>
<p>The HTML for the DIV is:</p>
<pre class="brush: html">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;
  &lt;html&gt;
  &lt;head&gt;
  &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt;
  &lt;title&gt;Moveable Div - www.Web-Tricks.info&lt;/title&gt;
  &lt;style type="text/css"&gt;
  &lt;!--
  #testdiv {
  width: 286px;
  position: absolute;
  z-index: 1;
  background-color: #006;
  left: 283px;
  top: 211px;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #FFF;
  padding: 20px;
  cursor: move;
  }

  #testdiv a {
  color: #FFD;
  }
  --&gt;
  &lt;/style&gt;

  &lt;script type="text/javascript" language="javascript" src="drag.js"&gt;&lt;/script&gt;

  &lt;/head&gt;

&lt;body&gt;

  &lt;div id="testdiv" style="left: 283px; top: 211px;" onMouseDown="dragStart(event, this.id)";&gt;

  &lt;p&gt;Moveable Div brought to you by&lt;/p&gt;

  &lt;p&gt;&lt;a href="http://www.web-tricks.info"&gt;http://www.Web-Tricks.info&lt;/a&gt;&lt;/p&gt;

  &lt;/div&gt;

  &lt;/body&gt;

  &lt;/html&gt;</pre>
<p>The JavaScript for moving the div is:</p>
<pre class="brush: php">// Coded by Waseem Khan
// Developer at PakCoders
// Downloaded from http://www.Web-Tricks.info

function getID(id)
{
	return document.getElementById(id);
}

// Determine browser and version.

function Browser() {

  var ua, s, i;

  this.isIE    = false;
  this.isNS    = false;
  this.version = null;

  ua = navigator.userAgent;

  s = "MSIE";
  if ((i = ua.indexOf(s)) &gt;= 0) {
    this.isIE = true;
    return;
  }

  s = "Netscape6/";
  if ((i = ua.indexOf(s)) &gt;= 0) {
    this.isNS = true;
    return;
  }

  s = "Gecko";
  if ((i = ua.indexOf(s)) &gt;= 0) {
    this.isNS = true;
    return;
  }
}
var browser = new Browser();

var dragObj = new Object();
function dragStart(event, id) {
  var x, y;
  dragObj.elNode = getID(id);
  // Get cursor position with respect to the page.

  if (browser.isIE) {
    x = window.event.clientX + document.documentElement.scrollLeft
      + document.body.scrollLeft;
    y = window.event.clientY + document.documentElement.scrollTop
      + document.body.scrollTop;
  }
  if (browser.isNS) {
    x = event.clientX + window.scrollX;
    y = event.clientY + window.scrollY;
  }

  // Save starting positions of cursor and element.

  dragObj.cursorStartX = x;
  dragObj.cursorStartY = y;
  dragObj.elStartLeft  = parseInt(dragObj.elNode.style.left, 10);
  dragObj.elStartTop   = parseInt(dragObj.elNode.style.top,  10);

  if (isNaN(dragObj.elStartLeft)) dragObj.elStartLeft = 0;
  if (isNaN(dragObj.elStartTop))  dragObj.elStartTop  = 0;

  // Capture mousemove and mouseup events on the page.

  if (browser.isIE) {
    document.attachEvent("onmousemove", dragGo);
    document.attachEvent("onmouseup",   dragStop);
    window.event.cancelBubble = true;
    window.event.returnValue = false;
  }
  if (browser.isNS) {
    document.addEventListener("mousemove", dragGo,   true);
    document.addEventListener("mouseup",   dragStop, true);
    event.preventDefault();
  }
}

function dragGo(event) {

  var x, y;

  // Get cursor position with respect to the page.

  if (browser.isIE) {
    x = window.event.clientX + document.documentElement.scrollLeft
      + document.body.scrollLeft;
    y = window.event.clientY + document.documentElement.scrollTop
      + document.body.scrollTop;
  }
  if (browser.isNS) {
    x = event.clientX + window.scrollX;
    y = event.clientY + window.scrollY;
  }

  // Move drag element by the same amount the cursor has moved.

  dragObj.elNode.style.left = (dragObj.elStartLeft + x - dragObj.cursorStartX) + "px";
  dragObj.elNode.style.top  = (dragObj.elStartTop  + y - dragObj.cursorStartY) + "px";

  if (browser.isIE) {
    window.event.cancelBubble = true;
    window.event.returnValue = false;
  }
  if (browser.isNS)
    event.preventDefault();
}

function dragStop(event) {

  // Stop capturing mousemove and mouseup events.

  if (browser.isIE) {
    document.detachEvent("onmousemove", dragGo);
    document.detachEvent("onmouseup",   dragStop);
  }
  if (browser.isNS) {
    document.removeEventListener("mousemove", dragGo,   true);
    document.removeEventListener("mouseup",   dragStop, true);
  }
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/23/movable-div-using-javascript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PayPal alternatives in Pakistan</title>
		<link>http://www.lurnweb.com/22/paypal-alternatives-in-pakistan/</link>
		<comments>http://www.lurnweb.com/22/paypal-alternatives-in-pakistan/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 10:13:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General Web Stuff]]></category>
		<category><![CDATA[paypal alternatives in pakistan]]></category>
		<category><![CDATA[paypal in pakistan]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/2010/03/paypal-alternatives-in-pakistan/</guid>
		<description><![CDATA[It really moves me when I see a lot web developers and software engineers, not having the real business in Pakistan due to unavailability of PayPal. However, there are some alternate ways to suffice for the merchant solutions and the coders in Pakistan, can still sell their products/scripts/software by using other merchant solutions. Here are [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F22%2Fpaypal-alternatives-in-pakistan%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F22%2Fpaypal-alternatives-in-pakistan%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It really moves me when I see a lot web developers and software engineers, not having the real business in Pakistan due to unavailability of PayPal.</p>
<p>However, there are some alternate ways to suffice for the merchant solutions and the coders in Pakistan, can still sell their products/scripts/software by using other merchant solutions. <span id="more-22"></span>Here are a few of them:</p>
<h3><a href="https://www.2checkout.com/" target="_blank">2Checkout.com</a></h3>
<p>2Checkout (2CO) provides the software vendors to sell their products online, accept credit cards and even accept payments in PayPal, without having a PayPal account.</p>
<p><strong>This is one of the most reliable merchant solution available  but it does have a $49, one-time, sign-up fee.</strong></p>
<p>One limitation which 2CO posses is that you can only link your 2CO account to only one web site. This means that you can only sell products/services from only one web site.</p>
<p>You can signup for a 2Checkout account at: <a title="Signup for 2Checkout account" href="https://www2.2checkout.com/2co/signup/" target="_blank">https://www.2checkout.com/</a></p>
<h3><a href="http://www.plimus.com/" target="_blank">Plimus.com</a></h3>
<p>Plimus is a bit less common than 2Checkout merchant solution. It has all the features available in 2Checkout.com (like processing credit card, paypal payments) and most importantly, <strong>it is absolutely FREE to signup</strong>.</p>
<p>They have a template system for the checkout pages and therefore the checkout page can be customized to blend with your web site theme.</p>
<p>Plimus.com also do not put the limitation of only one web site. You can use it on multiple web sites.</p>
<p>You can signup for a free Plimus account at:</p>
<p><a title="Signup for a free account at Plimus.com" href="https://secure.plimus.com/register/" target="_blank">https://secure.plimus.com/register/</a></p>
<p>Besides credit card and PayPal payment options, both 2CO and Plimus have numerous other payment methods but I have only mentioned the ones which are more important for the Pakistanis.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/22/paypal-alternatives-in-pakistan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to save data as a CSV file using PHP</title>
		<link>http://www.lurnweb.com/6/how-to-save-data-as-a-csv-file-using-php/</link>
		<comments>http://www.lurnweb.com/6/how-to-save-data-as-a-csv-file-using-php/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 08:22:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[output csv using php]]></category>
		<category><![CDATA[save dialogue using php]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/?p=6</guid>
		<description><![CDATA[There are multiple instances when you need to store the data as a file instead of outputting it in the browser. One common example is to store the data in a CSV (Comma Separated Values) file. You can output a file saving dialogue sending appropriate headers to the browser. Below is the example written in [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F6%2Fhow-to-save-data-as-a-csv-file-using-php%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F6%2Fhow-to-save-data-as-a-csv-file-using-php%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>There are multiple instances when you need to store the data as a file instead of outputting it in the browser. One common example is to store the data in a CSV (Comma Separated Values) file. You can output a file saving dialogue sending appropriate headers to the browser.<span id="more-6"></span> Below is the example written in PHP. The code is commented so I hope there will be no difficulty in understanding.</p>
<pre class="brush: php"> &lt;?php // save the CSV data in a variable
  $csvData = "name,email\n";
  $csvData.= "waseem,waseem@waseem.com\n";
  $csvData.= "ikram,ikram@ikram.com";
  // filename to save data
  $filename = "sample.csv";
  // open file in write mode
  $fh = fopen($filename, "w");
  // write data to the file
  fwrite($fh, $csvData);
  // close the file
  fclose($fh);
  // send headers to output the CSV data as a file
  header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
  header("Content-Length: " . strlen($csvData));
  header("Content-type: text/x-csv");
  header("Content-Disposition: attachment; filename=$filename");
  echo $csvData;
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/6/how-to-save-data-as-a-csv-file-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Free 240 Plugins for Adobe Dreamweaver CS4</title>
		<link>http://www.lurnweb.com/4/download-free-240-plugins-for-adobe-dreamweaver-cs4/</link>
		<comments>http://www.lurnweb.com/4/download-free-240-plugins-for-adobe-dreamweaver-cs4/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 20:38:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[adobe dreamweaver cs4 plugins]]></category>
		<category><![CDATA[adobe dreamweaver plugins]]></category>
		<category><![CDATA[dreamweaver plugin free]]></category>

		<guid isPermaLink="false">http://www.lurnweb.com/?p=4</guid>
		<description><![CDATA[Link to download all 240 plugins for adobe dreamweaver cs4: http://rs39.rapidshare.com/files/185352406/Plug-Ins_www.softarchive.net.7z Here is the list of the plugins included in the package. A Simple Poll V2.0.0 For Adobe Dreamweaver Abrir Janela Pop-Up V1.0.2 (Portuguese) For Adobe Dreamweaver Add Gradient Background Style V1.0.0 For Adobe Dreamweaver Add onmouseout V1.0.0 For Adobe Dreamweaver Adobe Style Menu V4.0.2 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lurnweb.com%2F4%2Fdownload-free-240-plugins-for-adobe-dreamweaver-cs4%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lurnweb.com%2F4%2Fdownload-free-240-plugins-for-adobe-dreamweaver-cs4%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<div>
<p>Link to download all 240 plugins for adobe dreamweaver cs4:</p>
<p><a href="http://rs39.rapidshare.com/files/185352406/Plug-Ins_www.softarchive.net.7z" target="_blank">http://rs39.rapidshare.com/files/185352406/Plug-Ins_www.softarchive.net.7z</a></p>
<p>Here is the list of the plugins included in the package.</p>
<p>A Simple Poll V2.0.0 For Adobe Dreamweaver<br />
Abrir Janela Pop-Up V1.0.2 (Portuguese) For Adobe Dreamweaver<br />
Add Gradient Background Style V1.0.0 For Adobe Dreamweaver<br />
Add onmouseout V1.0.0 For Adobe Dreamweaver<span id="more-4"></span><br />
Adobe Style Menu V4.0.2 For Adobe Dreamweaver<br />
Advanced CSS File Include V1.0.0 For Adobe Dreamweaver<br />
Advanced Manage Workspace Layouts V1.1.1 For Adobe Dreamweaver<br />
Advanced Random Images V4.3.8 For Adobe Dreamweaver<br />
ASP Random Images V1.0.2 For Adobe Dreamweaver<br />
Atomz Search V2.0.19 For Adobe Dreamweaver<br />
Auto Default Form Field V1.0.2 For Adobe Dreamweaver<br />
Automatic Jump Menu V1.0.2 For Adobe Dreamweaver<br />
Book Flip V1.0.2 For Adobe Dreamweaver<br />
Bordered Table V2.1.1 For adobe Dreamweaver<br />
Breadcrumbs V1.4.4 For Adobe Dreamweaver<br />
Calandar Maker V1.0.1 For Adobe Dreamweaver<br />
Calendar Object V2.0.4 For Adobe Dreamweaver<br />
Caps And Case Change V1.1.3 For Adobe Dreamweaver<br />
Center Layout Tables V1.0.0 For Adobe Dreamweaver<br />
Center Popup Window V1.0.1 For Adobe Dreamweaver<br />
Check Form V4.66.0 For Adobe Dreamweaver<br />
Clear Initial Form Fields V2.1.1 For Adobe Dreamweaver<br />
Close All Documents V1.0.5 For Adobe Dreamweaver<br />
Close Bowser Window V1.2.0 For Adobe Dreamweaver<br />
Close Button 1.1.1 For Adobe Dreamweaver<br />
Colour Harmony V1.0.0 For Adobe Dreamweaver<br />
Compare To V1.0.2 For Adobe Dreamweaver<br />
Constructioner Areas (C-Areas) V2.0.1 For Adobe Dreamweaver<br />
Contect Help Toolbar V1.2.0 For Adobe Dreamweaver<br />
CourseBuilder V4.4.1.0 For Adobe Dreamweaver<br />
Cross-browser AutoScroller V2.0.0 For Adobe Dreamweaver<br />
Cruotons V1.0.0 For Adobe Dreamweaver<br />
CSS Target Media Type Interface V2.0.1 For Adobe Dreamweaver<br />
D4WStatsLittle V1.12.0 For Adobe Dreamweaver<br />
Date Insertion V1.4.2 For Adobe Dreamweaver<br />
Diable Field V1.0.2 For Adobe Dreamweaver<br />
Div Tags V1.0.0 For Adobe Dreamweaver<br />
Downloads Counter V1.1.0 For Adobe Dreamweaver<br />
DwZone Access DataBase Connection V1.2.0 For Adobe Dreamweaver<br />
DwZone Advanced Form Controls V1.3.8 For Adobe Dreamweaver<br />
DwZone Advanced Image Gallery V1.2.8 For Adobe Dreamweaver<br />
DwZone Advanced Mail Plug In V1.2.1 For Adobe Dreamweaver<br />
DwZone Advanced Mail PlugIn Delete V1.1.0 For Adobe Dreamweaver<br />
DwZone Advanced Mail V2.2.3 For Adobe Dreamweaver<br />
DwZone Advanced Search V1.3.9 For Adobe Dreamweaver<br />
DwZone ASP Upload And Resize Simple V1.9.7 For Adobe Dreamweaver<br />
DwZone ASP Upload And Resize V2.2.2 For Adobe Dreamweaver<br />
DwZone ASP Upload Simple V1.7.5 For Adobe Dreamweaver…<br />
DwZone ASP Upload V1.9.0 For Adobe Dreamweaver<br />
DwZone ASP.NET Advanced Mail V1.1.6 For Adobe Dreamweaver<br />
DwZone ASP.NET File Upload And Resize V1.2.3 For Adobe Dreamweaver<br />
DwZone ASP.NET File Upload V1.2.1 For Adobe Dreamweaver<br />
DwZone ASP.NET Image Gallery V1.1.0 For Adobe Dreamweaver<br />
DwZone ASP.NET Multi Column Combo Box V1.1.1 For Adobe Dreamweaver<br />
DwZone Dynamic Chart V1.1.1 For Adobe Dreamweaver<br />
DwZone Dynamic Image V1.2.1 For Adobe Dreamweaver<br />
DwZone Dynamic Sort Table V1.1.0 For Adobe Dreamweaver<br />
DwZone Multi Column Combo Box V1.1.7 For Adobe Dreamweaver<br />
DwZone Professional Query Manager V1.5.4 For Adobe Dreamweaver<br />
DwZone Professional Record Wizard For Adobe Dreamweaver<br />
DwZone Site Search Engine V1.2.9 For Adobe Dreamweaver<br />
DwZone Visual CDonts Insert Object V1.1.4 For Adobe Dreamweaver<br />
DwZone Visual Include V1.1.4 For Adobe Dreamweaver<br />
DwZone Visual Search File V1.1.0 For Adobe Dreamweaver<br />
DwZone WYSIWYG HTML Editor V1.5.4 For Adobe Dreamweaver<br />
Dyanmic Images V1.1.3 For Adobe Dreamweaver<br />
External Links Pro V1.0.15 For Adobe Dreamweaver<br />
Fade Link V1.0.6 For Adobe Dreamweaver<br />
Favorites Menu V1.0.0 For Adobe Dreamweaver<br />
Flat Button V1.0.4 For Adobe Dreamweaver<br />
Float Layer V1.0.1 For Adobe Dreamweaver<br />
Form Calculator V1.2.4 For Adobe Dreamweaver<br />
Form Inputs To Datasource V1.3.3 For Adobe Dreamweaver<br />
Form Maker V2.0.0 For Adobe Dreamweaver<br />
Form Security V2.9.5 For Adobe Dreamweaver<br />
Format Table CSS V1.0.1 For Adobe Dreamweaver<br />
Frunder Flash Menu V2.5.0 For Adobe Dreamweaver<br />
F-source Business Drop Down Menu V1.0.0 For Adobe Dreamweaver<br />
F-source Business Style Menu V1.2.1 &amp; f-source Navigation Guide V1.0.0 For ADw [1]<br />
F-source Business Style Menu V1.2.1 &amp; f-source Navigation Guide V1.0.0 For ADw [2]<br />
F-source Cubic Menu V2.1.0 For Adobe Dreameaver<br />
F-source Metalic Menu V1.1.0 For Adobe Dreamweaver<br />
GenB V1.4.1 For Adobe Dreamweaver<br />
Go To URL In Opener V1.0.0 For Adobe Dreamweaver<br />
History Navigation V1.1.2 For Adobe Dreamweaver<br />
IM Animated Collapsible Accordion V1.1.1 For Adobe Dreamweaver<br />
Image Bounds V1.0.0 For Adobe Dreamweaver<br />
Insert A QuickTime Movie V1.0.1 For Adobe Dreamweaver<br />
Insert Filename V1.0.0 For Adobe Dreamweaver<br />
Insert Flash Animation V1.0.1 For Adobe Dreamweaver<br />
javascript Syntax Checker V1.0.0 For Adobe Dreamweaver<br />
Joomla V1.5 Extension For Adobe Dreamweaver<br />
Language Menu V2.0.0 For Adobe Dreamweaver<br />
Likno AllWebMenus javascript Menu Builder V1.0.1 For Adobe Dreamweaver<br />
Link Title V1.0.0 For Adobe Dreamweaver<br />
List Menu Data V1.0.4 For Adobe Dreamweaver<br />
List-Menu Rewrite V1.1.2 For Adobe Dreamweaver<br />
Live Clock V2.3.2 For Adobe Dreamweaver<br />
Load Site Selection V1.0.6 For Adobe Dreamweaver<br />
Mac Style Menu V4.2.1 For Adobe Dreamweaver<br />
Macromedia Style Menu V4.2.1 For Adobe Dreamweaver<br />
MenuKit V1.2.2 For Adobe Dreamweaver<br />
MenuKit V2.0.1 For Adobe Dreamweaver<br />
MiArt HTTP Header Tool V1.4.0 For Adobe Dreamweaver<br />
Mighty Flighty CSS Template V1.0.1 For Adobe Dreamweaver<br />
Multiple Selection V1.0.0 For Adobe Dreamweaver<br />
Netscape And Opera Resize Fix V1.0.14 For Adobe Dreamweaver<br />
Page List V1.1.3 For Adobe Dreamweaver<br />
Panels Toolbar V1.0.0 For Adobe Dreamweaver<br />
PayPal Button Creator V2.1.3 For Adobe Dreamweaver<br />
PlayStream VideoLaunch V1.1.0 For Adobe Dreamweaver<br />
PluginLab Combo Box Menu V1.4.0 For Adobe Dreamweaver<br />
PluginLab Combo Box Menu V2.0.41 For Adobe Dreamweaver<br />
PluginLab CSS Tree Menu V1.011 For Adobe Dreamweaver<br />
PluginLab Horizontal Flyout Menu V2.0.80 For Adobe Dramweaver<br />
PluginLab Horizontal Image Menu V2.0.30 For Adobe Dreamweaver<br />
PluginLab Vertical Flyout Menu V2.0.80 For Adobe Dramweaver<br />
PluginLab Vertical Image Menu V2.0.30 For Adobe Dramweaver<br />
Pop Up Text Link V1.0.0 For Adobe Dreamweaver<br />
Popup Link V1.3.0 For Adobe Dreamweaver<br />
Popup Messages V1.0.6 For Adobe Dreamweaver<br />
Puzzle Factory Game Arcade V1.0.3 For Adobe Dreamweaver<br />
PVII Accordion Panel Magic V1.04 For Adobe Dreamweaver<br />
PVII AniMagic Layers V2.90 For Adobe Dreamweaver<br />
PVII Auto ShowHide V1.20 For Adobe Dreamweaver<br />
PVII AutoHide V1.70 For Adobe Dreamweaver<br />
PVII AutoLayers V1.50 For Adobe Dreamweaver<br />
PVII Class Changer V2.70 For Adobe Dreamweaver<br />
PVII CSS Cookie Monster V1.80 For Adobe Dreamweaver<br />
PVII CSS Layout Magic V1.07 For Adobe Dreamweaver<br />
PVII Fix Null Links V1.02 For Adobe Dreamweaver<br />
PVII Horizontal Scroller V1.70 For Adobe Dreamweaver<br />
PVII Image Gallery Magic V1.1.5 For Adobe Dreamweaver<br />
PVII Instant CSS V2.20 For Adobe Dreamweaver<br />
PVII Jump Menu Magic V1.40 For Adobe Dreamweaver<br />
PVII Layout Designer 2 V2.4.0 For Adobe Dreamweaver<br />
PVII Layout Designer 2 V2.60 For Adobe Dreamweaver<br />
PVII Multi-Class 2 V1.00 For Adobe Dreamweaver<br />
PVII Multi-Move V1.40 For Adobe Dreamweaver<br />
PVII Opera Resize Fix V1.1.0 For Adobe Dreamweaver<br />
PVII PagePack -Ennergi V1.0.2 For Adobe Dreamweaver<br />
PVII PagePack -Graffiti V1.0.7 For Adobe Dreamweaver<br />
PVII PagePack -il Libro V1.0.2 For Adobe Dreamweaver<br />
PVII PagePack -Jazz 05 V1.0.4 For Adobe Dreamweaver<br />
PVII PagePack -Key Lime V1.0.7 For Adobe Dreamweaver<br />
PVII PagePack -Utopia V1.02 For Adobe Dreamweaver<br />
PVII Pop Menu Magic Style Pack V1.0.4 For Adobe Dreamweaver<br />
PVII ReDolt V1.21 For Adobe Dreamweaver<br />
PVII Remove IE Link Scrubber V1.30 For Adobe Dreamweaver<br />
PVII Return False Fix V1.50 For Adobe Dreamweaver<br />
PVII RunEm V1.40 For Adobe Dreamweaver<br />
PVII Safari BackButton Fix V1.2.0 For Adobe Dreamweaver<br />
PVII Scrub V1.00 For Adobe Dreamweaver<br />
PVII Set Min Width V1.1.3 For Adobe Dreamweaver<br />
PVII ShowPic V2.00 For Adobe Dreamweaver<br />
PVII Simple VII-V2 Menu Object (CSS Express Drop-Down Menus) V1.30 For ADw<br />
PVII Slide Show Magic V1.2.7 For Adobe Dreamweaver<br />
PVII Snap Layers V2.67 For Adobe Dreamweaver<br />
PVII Style Sheet Loader V1.2.0 For Adobe Dreamweaver<br />
PVII Swap Class V1.40 For Adobe Dreamweaver<br />
PVII Tab Panel Magic V1.0.8 For Adobe Dreamweaver<br />
PVII TabBar Magic V1.0.9 For Adobe Dreamweaver<br />
PVII Vertical Scroller V1.70 For Adobe Dreamweaver<br />
PVII Write Styles V1.60 For Adobe Dreamweaver<br />
PVII Write V4 StyleSheet V1.10 For Adobe Dreamweaver<br />
Quick Gallery V1.0.1 For Adobe Dreamweaver<br />
Quick Link Anchors V1.4.5 For Adobe Dreamweaver<br />
Quick Named Anchor V1.0.1 For Adobe Dreamweaver<br />
QuickLink V1.1.0 For Adobe Dreamweaver<br />
Random Links V1.2.3 For Adobe Dreamweaver<br />
Remove Page Margins V1.0.2 For Adobe Dreamweaver<br />
Reset Image Sizes V3.0.8 For Adobe Dreamweaver<br />
RSS 2.0 From Darabase V1.0.0 For Adobe Dreamweaver<br />
RSS DreamFeeder V2.0.9 For Adobe Dreamweaver<br />
Script Optimizer-Obfuscator For javascript V1.2.0 For Adobe Dreamweaver<br />
Scrollbars V1.2.4 For Adobe Dreamweaver<br />
Select Template Files V1.5.0 For Adobe Dreamweaver<br />
Selection Menu For Coding Toolbar V1.1.0 For Adobe Dreamweaver<br />
Set Class V1.0.1 For Adobr Dreamweaver<br />
Set Collation V1.0.1 For Adobe Dreamweaver<br />
Simple Banner Rotator V1.0.1 For Adobe Dreamweaver<br />
Simple List-Menu Rewrite V1.0.4 For Adobe Dreamweaver<br />
Sitepal Wizard V1.4.0 For Adobe Dreamweaver<br />
Sky Style Menu V1.0.0 For Adobe Dreamweaver<br />
Slide Layer V2.1.0 For Adobe Dreamweaver<br />
Smart Link V1.4.3 For Adobe Dreamweaver<br />
Softery Aluminium DropDown Menu V1.0.2 &amp; Menus UI V1.3.2 &amp;<br />
IE Flash Problem Solver V1.0.5 For Adobe Dreamweaver<br />
Softery Aluminium Menu V1.0.5 &amp; Menus UI V1.2.4 &amp;<br />
IE Flash Problem Solver V1.0.4 For Adobe Dreamweaver<br />
Softery Easy DropDown Menu V1.0.0 &amp; Menus UI V1.3.0 &amp;<br />
IE Flash Problem Solver V1.0.4 For Adobe Dreamweaver<br />
Softery G-Force Menu V1.0.0 &amp; Menus UI V1.3.0 &amp;<br />
IE Flash Problem Solver V1.0.4 For Adobe Dreamweaver<br />
Softery Glassy Menu V1.0.0 &amp; Menus UI V1.3.0 &amp;<br />
IE Flash Problem Solver V1.0.4 For Adobe Dreamweaver<br />
Softery Grid Menu V1.0.0 &amp; Meuns UI V1.0.7 For Adobe Dreamweaver<br />
Softery Light Metal Menu V1.0.0 &amp; Menus UI V1.1.2 For Adobe Dreamweaver<br />
Softery Obsidian DropDown Menu V1.0.1 &amp; Menus UI V1.1.2 For Adobe Dreamweaver<br />
Softery Obsidian Menu V1.0.8 &amp; Menus UI V1.3.2 &amp;<br />
IE Flash Problem Solver V1.0.5 For Adobe Dreamweaver<br />
Softery Plastic Menu V1.0.0 &amp; Menus UI V1.0.7 For Adobe Dreamweaver<br />
Softery Plastic Menu V1.0.5 &amp; Menus UI V1.3.0 &amp;<br />
IE Flash Problem Solver V1.0.5 For Adobe Dreamweaver<br />
Softery Simple DropDown Menu V1.0.0 &amp; Menus UI V1.1.3 For Adobe Dreamweaver<br />
Softery Soft Sea DropDown Menu V1.0.5 &amp; Menus UI V1.3.2 &amp;<br />
IE Flash Problem Solver V1.0.5 For Adobe Dreamweaver<br />
Softery Sony Style DropDown Menu V1.0.3 &amp; Menus UI V1.3.0 &amp;<br />
IE Flash Problem Solver V1.0.4 For Adobe Dreamweaver<br />
Softery WinXP Style Menu V1.0.8 &amp; Menus UI V1.3.2 &amp;<br />
IE Flash Problem Solver V1.0.5 For Adobe Dreamweaver<br />
Status Bar Text V1.5.15 For Adobe Dreamweaver<br />
Super Countries V2.4.0 For Adobe Dreamweaver<br />
Super Date V1.2.0 For Adobe Dreamweaver<br />
SuperScript 2 V1.1.2 For Adobe Dreamweaver<br />
Swap Trans Image V1.0.2 For Adobe Dreamweaver<br />
Switch Field V1.0.1 For Adobe Dreamweaver<br />
Tabel Dimensions To Background Image V2.6.0 For Adobe Dreamweaver<br />
Telephone Character V1.6.0 For Adobe Dreamweaver<br />
Template Report V1.0.0 For Adobe Dreamweaver<br />
The Login with Dynamic Redirect V1.0.0 For Adobe Dreamweaver<br />
Trio Solutions Scroll V1.0.1 For Adobe Dreamweaver<br />
TrustSoft Joomla Dreamweaver Template Kit V2.0 For Adobe Dreamweaver<br />
Ultra Close Window V2.0.0 For Adobe Dreamweaver<br />
Uni Mailer V1.0.5 For Adobe Dreamweaver<br />
Visit Counter V1.0.1 For Adobe Dreamweaver<br />
Vista Drop Down Menu V1.1.0 For Adobe Dreamweaver<br />
Voice Web Studio Free V1.1.1 For Adobe Dreamweaver<br />
Web Photo Album V2.1.8 For Adobe Dreamweaver<br />
Web Photo Album V2.2.6 For Adobe Dreamweaver<br />
Zencil V3.0.8 For Adobe Dreamweaver<br />
Zoom Search Engine V4.2.1002 For Adobe Dreamweaver</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lurnweb.com/4/download-free-240-plugins-for-adobe-dreamweaver-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
