<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Against All Odds - HTML</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Sun, 19 May 2013 23:43:54 -0700</pubDate>
			<lastBuildDate>Wed, 09 Jan 2013 19:10:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>405 - HTTP verb used to access this page is not allowed</title>
				<link>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</link>
				<description>
				
				Yesterday, I&apos;ve encountered this error &lt;b&gt;&quot;server error:405 - HTTP verb used to access this page is not allowed&quot;&lt;/b&gt; when I call &quot;http://www.ppshein.net/test.html&quot; HTTP GET from my android program. I&apos;m confused why I got this error even I&apos;ve tried following url in my desktop browser is fine. Thus I was googling and find how to solve it. After few minutes, I&apos;ve found answer how to solve this problem. It&apos;s quite simple that change file extension to &quot;.cfm&quot;  instead of &quot;.html&quot;. It&apos;s because of web server doesn&apos;t let any request containing POST/GET method to any static page called &quot;.html, .htm&quot;, will return such following error called &quot;405&quot;.

Thanks god that I&apos;ve got new experience.
				
				</description>
				
				
				<category>Android</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 09 Jan 2013 19:10:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>One of my favourite changelogs in Firefox</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/28/One-of-my-favourite-changelogs-in-Firefox</link>
				<description>
				
				I cannot say what I found in Firefox 4 aren&apos;t cool enough but they&apos;re awesome. Because of those, I cannot write that much coding for my projects when I push my clients to use Firefox 4 as our project default browser. Don&apos;t look at those new changelogs first. Just look GUI of Firefox4. I can feel it&apos;s cool because they can screw the layout of menu toolbar and the obvious button for previous browsing history. Another one is saving password. I can obviously see the message box after I typing password into my blog, email or etc.

Ok, here is one of my changelogs of Firefox4 for me.

&lt;ul&gt;
&lt;li&gt;Javascript Alert Box&lt;/li&gt;
&lt;li&gt;Javascript Prompt Box&lt;/li&gt;
&lt;li&gt;Javascript Confirm Box&lt;/li&gt;
&lt;/ul&gt;
				 [More]
				</description>
				
				
				<category>HTML5</category>
				
				<category>Firefox 4</category>
				
				<category>HTML</category>
				
				<pubDate>Mon, 28 Mar 2011 21:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/28/One-of-my-favourite-changelogs-in-Firefox</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>To save data into localStorage when Offline</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/13/To-save-data-into-localStorage-when-Offline</link>
				<description>
				
				Today I&apos;ve found how to save the information of your data when offline (when your internet connection is disconnect). That&apos;s same as when Google email work. It&apos;s very useful to use because our submitted data is sometimes lost when our connection is disconnect or offline. Using this feature in HTML5 can prevent these bad situation. The important part is we need to check whether our browser can support &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot; or not. If not support, cannot develop anymore. If support, let&apos;s go.

First of all, we need to create manifest file for &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot;. It&apos;s the main part to let browser know our application will be using &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot;. So, we need to add all of files name we will be using into this manifest file as follow. Current my simple application, I&apos;ve used 2 files called &lt;b&gt;index.html&lt;/b&gt; and &lt;b&gt;lc.js&lt;/b&gt;. So, I need to add as follow

&lt;code&gt;
CACHE MANIFEST
index.html
lc.js
&lt;/code&gt;

Now I need to let our clients know he/she is now online or office with following javascript.

&lt;code&gt;
navigator.onLine ? &quot;online&quot; :&quot;offline&quot;
&lt;/code&gt;

After that, I need to create index.html file. As HTML5 standard, I need to follow the rule of HTML5. 

&lt;code&gt;
&lt;!DOCTYPE HTML&gt;
&lt;html manifest=&quot;/loc.manifest&quot;&gt;  
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>HTML5</category>
				
				<category>Firefox 4</category>
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Sun, 13 Mar 2011 19:40:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/13/To-save-data-into-localStorage-when-Offline</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Change default submit action with Javascript</title>
				<link>http://www.ppshein.net/index.cfm/2010/12/29/Change-default-submit-action-with-Javascript</link>
				<description>
				
				We have one issue to solve the bugs come back by clients yesterday. The problem is when our client change quantity in input box of the item and press enter, this item is oddly disappeared from the main screen. So, I need to troubleshoot this issue and read through this code again. Obviously, I found that there are two submit buttons in this found.

If there are two submit buttons in a form, do you know which submit button will work when we press enter? 

&lt;code&gt;
&lt;form name=&quot;frmDoubleSubmit&quot; method=&quot;post&quot; action=&quot;index.cfm&quot;&gt;
	&lt;input type=&quot;Text&quot; name=&quot;txtName&quot;&gt;&lt;br&gt;
	&lt;input type=&quot;Submit&quot; name=&quot;btnDelete&quot; value=&quot;Delete&quot;&gt;
	&lt;input type=&quot;Submit&quot; name=&quot;btnSave&quot; value=&quot;Save&quot;&gt;	
&lt;/form&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 29 Dec 2010 17:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/12/29/Change-default-submit-action-with-Javascript</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>DOCTYPE Declaration for CSS</title>
				<link>http://www.ppshein.net/index.cfm/2010/10/17/doctype-declaration</link>
				<description>
				
				Before time, I didn&apos;t notice doctype declaration at the top of every pages and I don&apos;t either know how does it work. Yesterday, I created a new style sheet about change button style when mouse-over. As you know, it&apos;s very simple to do for developers and don&apos;t need to create much coding for it. After creating and then I tested, it doesn&apos;t work. I bet all are correct in my style. 
Here is stylesheet.
&lt;code&gt;
	/* button style */
	.button 
	{    
		color: #feeef5;    
		border: solid 1px #d2729e;    
		background: #f895c2;    
		font: 14px/100% Arial, Helvetica, sans-serif;    
		padding: .5em 2em .55em;
	}
	
	.button:hover 
	{    
		background: #f90442;    
		text-decoration: none;
	}
	.button:active 
	{
	    color: #f3c3d9;
	}
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Stylesheet</category>
				
				<category>HTML</category>
				
				<pubDate>Sun, 17 Oct 2010 04:25:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/10/17/doctype-declaration</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Create gradient button with CSS</title>
				<link>http://www.ppshein.net/index.cfm/2010/9/24/create-gradient-button-with-css</link>
				<description>
				
				It&apos;s great that we can create gradient button with only CSS. We don&apos;t need any background image for creating gradient button anymore. 
&lt;code&gt;
/* it&apos;s just to create gradient button */

.button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 14px/100% Arial, Helvetica, sans-serif;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
    text-decoration: none;
}
.button:active {
    position: relative;
    top: 1px;
}
&lt;/code&gt;
 
&lt;code&gt;
/* it&apos;s just to create color manipluation */

.orange {
    color: #fef4e9;
    border: solid 1px #da7c0c;
    background: #f78d1d;
    background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
    background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&apos;#faa51a&apos;, endColorstr=&apos;#f47a20&apos;);
}
.orange:hover {
    background: #f47c20;
    background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
    background: -moz-linear-gradient(top,  #f88e11,  #f06015);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&apos;#f88e11&apos;, endColorstr=&apos;#f06015&apos;);
}
.orange:active {
    color: #fcd3a5;
    background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
    background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&apos;#f47a20&apos;, endColorstr=&apos;#faa51a&apos;);
}
&lt;/code&gt;

&lt;code&gt;
&lt;!--- usage ---&gt;
&lt;input class=&quot;button pink&quot; type=&quot;button&quot; value=&quot;Submit&quot; /&gt;
&lt;/code&gt;

Very thanks to : http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/
				
				</description>
				
				
				<category>Stylesheet</category>
				
				<category>HTML</category>
				
				<pubDate>Fri, 24 Sep 2010 04:10:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/9/24/create-gradient-button-with-css</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Rounded Corner for IE</title>
				<link>http://www.ppshein.net/index.cfm/2010/6/23/rounded-corner-for-ie</link>
				<description>
				
				If you want to make rounded corner box for everything, you may use integrating with images and css. Unless, For firefox, you can set &lt;span style=&quot;text-decoration: underline;&quot;&gt;border-radius&lt;/span&gt; by prefixing &quot;-moz&quot; to the css property. And ofcource for webkit use &quot;-webkit. For IE, border-radius doesn&apos;t work on it. That&apos;s why we need to integrate images and css for doing rounded corner. If you&apos;re sick of doing so, you can use following coding:

&lt;strong&gt;CSS&lt;/strong&gt;

&lt;code&gt;
.curved {
	padding:4px 0px 0px 0px;    
	width:80px;     
	height:20px;     
	border:#666666 solid 1px;     
	color:#000000;     
	text-align:center;     
	-moz-border-radius:20px;     
	-webkit-border-radius:10px;     
	behavior:url(border-radius.htc);
}
&lt;/code&gt;

&lt;strong&gt;The HTML&lt;/strong&gt;:


&lt;code&gt;
&lt;div class=&quot;curved&quot;&gt;rouneded div&lt;/div&gt;
&lt;/code&gt;


Best Credit to :
&lt;a href=&quot;http://www.htmlremix.com/files/20080924-border-radius.zip&quot;&gt;http://www.htmlremix.com/files/20080924-border-radius.zip&lt;/a&gt;
				
				</description>
				
				
				<category>Stylesheet</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 23 Jun 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/6/23/rounded-corner-for-ie</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Embedding windows media player WMV</title>
				<link>http://www.ppshein.net/index.cfm/2010/1/28/embedding-windows-media-player-wmv</link>
				<description>
				
				I&apos;m now creating &lt;a title=&quot;http://www.people.com.mm/misspeople2008&quot; href=&quot;http://www.people.com.mm/misspeople2008&quot; target=&quot;_blank&quot;&gt;misspeople2008&lt;/a&gt; section for &lt;a title=&quot;http://www.people.com.mm/misspeople2008&quot; href=&quot;http://www.people.com.mm/&quot; target=&quot;_blank&quot;&gt;www.people.com.mm&lt;/a&gt;. In these days, I need to do one video file into index page. First of all, I was thinking about how about embed flv player into my site. But, it&apos;s problem that my server hasn&apos;t installed Flash Player Server. That&apos;s why I decided to use with window media player. Blow is coding how to embed Video Player in HTML Page.

&lt;code&gt;
 &lt;invalidTag 
 	id=&quot;MediaPlayer&quot; 
	width=253 
	height=204 
	classid=&quot;CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95&quot; 
	standby=&quot;Loading Windows Media Player components...&quot; 
	type=&quot;application/x-oleobject&quot; 
	codebase=&quot;http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112&quot;&gt; 
	 &lt;param name=&quot;filename&quot; value=&quot;URL File&quot;&gt;
	 &lt;param name=&quot;Showcontrols&quot; value=&quot;True&quot;&gt;
	 &lt;param name=&quot;autoStart&quot; value=&quot;True&quot;&gt; 
	 &lt;invalidTag 
	 	type=&quot;application/x-mplayer2&quot; 
		src=&quot;URL File&quot; 
		name=&quot;MediaPlayer&quot; 
		width=253 
		height=204&gt;&lt;/embed&gt;
 &lt;/object&gt;
&lt;/code&gt;

How? It&apos;s easy, isn&apos;t it?
				
				</description>
				
				
				<category>HTML5</category>
				
				<category>Others</category>
				
				<category>HTML</category>
				
				<pubDate>Thu, 28 Jan 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/1/28/embedding-windows-media-player-wmv</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Access the value in frame</title>
				<link>http://www.ppshein.net/index.cfm/2009/9/19/access-the-value-in-frame</link>
				<description>
				
				In my project, I need to access some value in top frame from my current working frame which is below of top frame. I was dilemma when I encounter this problem. Finally, I gotcha how to access.

Here you go,

&lt;code&gt;window.frames[&apos;frame_name&apos;].document.form_name.input_field_name.value&lt;/code&gt;
				
				</description>
				
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Sat, 19 Sep 2009 06:33:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/9/19/access-the-value-in-frame</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Remove spacing in textarea</title>
				<link>http://www.ppshein.net/index.cfm/2009/9/11/remove-spacing-in-textarea</link>
				<description>
				
				It&apos;s simple problem for web developers. Sometimes, such problem make us to stop our progress by finding how to solve these problems. This problem is, when we cursor in our textarea box, this cursor isn&apos;t arrived to left align, it stays at center or somewhere else when we create our textarea box as so:
&lt;code&gt;&lt;textarea name=&quot;mytextarea&quot;&gt;
Here is Value....
&lt;/textarea&gt;&lt;/code&gt;
But, how to solve this problem is kinda simple. Just do so.
&lt;code&gt;&lt;textarea&gt;Here is value&lt;/textarea&gt;&lt;/code&gt;
How? It&apos;s simple, isn&apos;t it?
				
				</description>
				
				
				<category>HTML5</category>
				
				<category>HTML</category>
				
				<pubDate>Fri, 11 Sep 2009 06:33:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/9/11/remove-spacing-in-textarea</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Text shadow</title>
				<link>http://www.ppshein.net/index.cfm/2009/7/29/text-shadow</link>
				<description>
				
				In this morning, I&apos;m thinking of how to decorate template design to look nice and how to upgrade. At that time, I found w3.org saying : we can make nicer text message with shadow without using image files. It&apos;s really great. Unfortunately, it works in only firefox, not support IE 7+.

&lt;a title=&quot;text shadow&quot; href=&quot;http://www.w3.org/Style/Examples/007/text-shadow&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/Style/Examples/007/text-shadow&lt;/a&gt;
				
				</description>
				
				
				<category>Stylesheet</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 29 Jul 2009 06:33:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/7/29/text-shadow</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Want to make fake website for fun?</title>
				<link>http://www.ppshein.net/index.cfm/2009/5/13/want-to-make-fake-website-for-fun</link>
				<description>
				
				In these days, I got free spare time to surf websites. That&apos;s why I was surfing here and there. Oddly, I&apos;ve found &lt;a href=&quot;http://www.labnol.org/internet/design/edit-web-pages-like-wiki/3832/&quot; target=&quot;_blank&quot;&gt;one website&lt;/a&gt; support us to make fake website for fun.
&lt;ul&gt;
	&lt;li&gt;Open the website what you want to fake (ex: http://www.google.com)&lt;/li&gt;
	&lt;li&gt;copy this message, &lt;strong&gt;javascript:document.body.contentEditable=&apos;true&apos;; document.designMode=&apos;on&apos;; void 0 &lt;/strong&gt;into address bar (URL) and press Enter.&lt;/li&gt;
	&lt;li&gt;So, you can see this website as in rich-text editor.&lt;/li&gt;
&lt;/ul&gt;
				
				</description>
				
				
				<category>HTML5</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 13 May 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/5/13/want-to-make-fake-website-for-fun</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Dynamically create textarea with Javascript</title>
				<link>http://www.ppshein.net/index.cfm/2009/4/30/dynamically-create-textarea-with-javascript</link>
				<description>
				
				One of my projects need our clients to create textarea input dynamically with javascript. Seems it&apos;s kinda simple but actually, create dynamically is simple but how to fetch data from these is kinda complicated. So, I reserach through and thinking of about that. Finally, I gotcha..!! Here you gooo...

Example.html
&lt;code&gt;
&lt;form name=&quot;mycomposeForm&quot;&gt;
&lt;p id=&quot;parah&quot;&gt;&lt;/p&gt;
&lt;input type=&quot;hidden&quot; name=&quot;mytextcount&quot;&gt;
&lt;a href=&quot;javascript:addInput()&quot;&gt;Add more input field(s)&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;javascript:deleteInput()&quot;&gt;Remove field(s)&lt;/a&gt;
&lt;form&gt;

&lt;invalidTag&gt;
var arrInput = new Array(0);
var arrInputValue = new Array(0);
function addInput() {
arrInput.push(arrInput.length);
arrInputValue.push(&quot;&quot;);
display();
}
function display() {
document.getElementById(&apos;parah&apos;).innerHTML=&quot;&quot;;
for (intI=0;intI&lt;arrInput.length;intI++) {
document.getElementById(&apos;parah&apos;).innerHTML+=createInput(arrInput[intI], arrInputValue[intI]);
}
}
function saveValue(intId,strValue) {
arrInputValue[intId]=strValue;
}
function createInput(id,value) {
return &quot;&lt;textarea cols=&apos;40&apos; rows=&apos;5&apos; id=&apos;test &quot;+ id +&quot;&apos; name=&apos;test &quot;+ id +&quot;&apos; onChange=&apos;javascript:saveValue(&quot;+ id +&quot;,this.value)&apos; value=&apos;&quot;+ value +&quot;&apos;&gt;&lt;/textarea&gt;&lt;br&gt;&quot;;
}
function deleteInput() {
if (arrInput.length &gt; 0) {
arrInput.pop();
arrInputValue.pop();
}
display();
}
var arrInput = new Array(0);

var arrInputValue = new Array(0);

function addInput() {

arrInput.push(arrInput.length);

arrInputValue.push(&quot;&quot;);

display();

}

function display() {

document.getElementById(&apos;parah&apos;).innerHTML=&quot;&quot;;

for (intI=0;intI&lt;arrInput.length;intI++) {

document.getElementById(&apos;parah&apos;).innerHTML+=createInput(arrInput[intI], arrInputValue[intI]);

}

}

function saveValue(intId,strValue) {

arrInputValue[intId]=strValue;

}

function createInput(id,value) {

return &quot;&lt;textarea cols=&apos;40&apos; rows=&apos;5&apos; id=&apos;test &quot;+ id +&quot;&apos; name=&apos;test &quot;+ id +&quot;&apos; onChange=&apos;javascript:saveValue(&quot;+ id +&quot;,this.value)&apos; value=&apos;&quot;+ value +&quot;&apos;&gt;&lt;/textarea&gt;&lt;br&gt;&quot;;

}

function deleteInput() {

if (arrInput.length &gt; 0) {

arrInput.pop();

arrInputValue.pop();

}

display();

}

&lt;/script&gt;&lt;/code&gt;
				
				</description>
				
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Thu, 30 Apr 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/4/30/dynamically-create-textarea-with-javascript</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Vertical Marquee Banner</title>
				<link>http://www.ppshein.net/index.cfm/2009/3/30/vertical-marquee-banner</link>
				<description>
				
				I was supposed to create randomize rotated ads banner with javascript. But it&apos;s not quite alright and not have enough performance to all browsers. That&apos;s why I considered to do this small function with old-fashioned coding which is marquee tag. Because we shouldn&apos;t stick in attemption for serveral times when we&apos;re solving and finding bugs. That&apos;s why I decided to do with marquee tag and save my time. It&apos;s quite easy and flexiable to all browser but it&apos;s awful that before page is completely loaded by browser if banners images are more than 10 images.

&lt;code&gt;
&lt;marquee direction=&quot;up&quot; onmouseover=&quot;this.stop()&quot; onmouseout=&quot;this.start()&quot; scrollDelay=&quot;200&quot; width=&quot;200&quot;&gt;
&lt;a href=&quot;advfile.cfm/adv/flexanew&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_1.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/alpine&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_2.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/silk-n-shine&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_3.jpg&quot;  /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/perfectil&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_4.jpg&quot;  /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/smooth-e&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_5.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/lily&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_6.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/ogawa&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_7.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/dodokoko&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_8.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/vista&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_9.jpg&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;advfile.cfm/adv/tri&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;misspeople_sponsors/platinum_10.jpg&quot; /&gt;&lt;/a&gt;
&lt;/marquee&gt;
&lt;/code&gt;
				
				</description>
				
				
				<category>Project</category>
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Mon, 30 Mar 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/3/30/vertical-marquee-banner</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>How to Embed MP3 Audio Files In Web Pages</title>
				<link>http://www.ppshein.net/index.cfm/2009/3/23/how-to-embed-mp3-audio-files-in-web-pages</link>
				<description>
				
				I&apos;m not kinda happy in these days. Because my server is spontaneously crushed whenever visiting users are building up. I feel it might be because of stream section of our website called &quot;Music Portal&quot;. As we all know, all of over people away from mother land miss the sounds of our native land such as music, movies, articles and so on. That&apos;s why 70% of our customers are listening songs from our websites make our server to be in crush. Being developers of site, I gotta solve this problem and prevent not to crush our server again.

I embed window media player for listening songs from our site. How about flash media player instead of window media player? Embed flash media player in website can reduce bandwidth? I&apos;m in delimma in such questions. So, I try seeking &lt;strong&gt;embed flash media player&lt;/strong&gt; in Google. Fortunately, I&apos;ve found &lt;a title=&quot;http://www.labnol.org/internet/design/html-embed-mp3-songs-podcasts-music-in-blogs-websites/2232/&quot; href=&quot;http://www.labnol.org/internet/design/html-embed-mp3-songs-podcasts-music-in-blogs-websites/2232/&quot; target=&quot;_blank&quot;&gt;this website&lt;/a&gt; providing developers to putting flash media player in their websites. It&apos;s kinda cool and I&apos;ve embed it in our website already. The one I need is to compare server load is going as usual or gradually decreased.

Best Credit to : &lt;a title=&quot;http://www.labnol.org/internet/design/html-embed-mp3-songs-podcasts-music-in-blogs-websites/2232/&quot; href=&quot;http://www.labnol.org/internet/design/html-embed-mp3-songs-podcasts-music-in-blogs-websites/2232/&quot; target=&quot;_blank&quot;&gt;http://www.labnol.org/internet/design/html-embed-mp3-songs-podcasts-music-in-blogs-websites/2232/&lt;/a&gt;
				
				</description>
				
				
				<category>HTML5</category>
				
				<category>HTML</category>
				
				<pubDate>Mon, 23 Mar 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/3/23/how-to-embed-mp3-audio-files-in-web-pages</guid>
				
				
			</item>
			
		 	
			</channel></rss>