<?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>Creative Planners - Advice on Wedding Planning or Catering Your Next Event</title>
	<atom:link href="http://www.creative-planners.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.creative-planners.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 Feb 2012 20:35:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Java Program Almost Working&#8230;.?</title>
		<link>http://www.creative-planners.com/java-program-almost-working/</link>
		<comments>http://www.creative-planners.com/java-program-almost-working/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 20:35:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[almost]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[Working]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/java-program-almost-working/</guid>
		<description><![CDATA[by awayfromkeyboard Question: Java Program Almost Working&#8230;.? Ok, so I&#8217;m working on my last few programs for my JAVA class, and this one almost works. The only issue I&#8217;m having is that when I run the program and choose &#8220;Unlimited&#8221; for the Meal Plan, it doesn&#8217;t add the price of that meal plan in with [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin:5px;font-size:80%;"><img alt=""Event Planning"" src="http://farm1.staticflickr.com/82/237134325_8e13fb772e_m.jpg" width="160"/><br/> by <a rel="nofollow" href="http://www.flickr.com/photos/93552678@N00/237134325">awayfromkeyboard</a></div>
<p><strong><i>Question</i>: Java Program Almost Working&#8230;.?</strong><br />
Ok, so I&#8217;m working on my last few programs for my JAVA class, and this one almost works.  The only issue I&#8217;m having is that when I run the program and choose &#8220;Unlimited&#8221; for the Meal Plan, it doesn&#8217;t add the price of that meal plan in with the Dorm price.  If I choose one of the other two meal plans, it works just fine&#8230;I don&#8217;t understand why.  Any tips?<br />
Also, I&#8217;d really like to have a label above each box saying what the box is for (i.e. &#8220;Choose a Dorm:&#8221; and &#8220;Choose a Meal Plan:&#8221;).  We haven&#8217;t really learned this, but it&#8217;s driving me nuts not seeing it there&#8230;.Thanks in advance for any help!</p>
<p>import java.awt.*;<br />
import java.awt.event.*;<br />
import java.text.DecimalFormat;</p>
<p>import javax.swing.*;</p>
<p>/**<br />
 *  This class demonstrates a combo box.<br />
 */</p>
<p>public class DormAndMealPlanCalc extends JFrame<br />
{<br />
   private JPanel dormPanel;         // To hold components<br />
   private JPanel planPanel; // To hold component<br />
   private JComboBox dormBox; // List of dorms<br />
   private JComboBox planBox; // List of plans</p>
<p>   // Dorm price constants<br />
   public final int allen = 1500;<br />
   public final int pike = 1600;<br />
   public final int farthing = 1200;<br />
   public final int university = 1800;</p>
<p>   // Meal plan price constants<br />
   public final int seven = 560;<br />
   public final int fourteen = 1095;<br />
   public final int unlimited = 1500;</p>
<p>   // Array to hold chosen dorm<br />
   private String[] dorm = { &#8221; &#8220;, &#8220;Allen Hall&#8221;, &#8220;Pike Hall&#8221;, &#8220;Farthing Hall&#8221;, &#8220;University Suites&#8221;};</p>
<p>   // Array to hold chosen meal plan<br />
   private String[] plan = { &#8221; &#8220;, &#8220;7 Meals Per Week&#8221;, &#8220;14 Meals Per Week&#8221;, &#8220;Unilimited Meals&#8221;};</p>
<p>   // Main Method<br />
   public static void main(String[] args)<br />
   {<br />
   new DormAndMealPlanCalc();<br />
   }</p>
<p>   public DormAndMealPlanCalc()<br />
   {<br />
   super(&#8220;Dorm and Meal Plan Calculator&#8221;);</p>
<p>   // Specify an action for the close button.<br />
   setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);</p>
<p>   // Create a BorderLayout manager for the content pane.<br />
   setLayout(new BorderLayout());</p>
<p>   //Build the Panels<br />
   buildDormPanel();<br />
   buildPlanPanel();</p>
<p>   //Add the panels to the content pane<br />
   add(dormPanel, BorderLayout.WEST);<br />
   add(planPanel, BorderLayout.EAST);</p>
<p>      // Pack and display the window.<br />
      pack();<br />
      setVisible(true);<br />
   }<br />
   private void buildDormPanel()<br />
   {<br />
      // Create a panel to hold the combo box.<br />
      dormPanel = new JPanel();</p>
<p>      // Create the combo box<br />
      dormBox = new JComboBox(dorm);</p>
<p>      // Register an action listener.<br />
      dormBox.addActionListener(new ComboBoxListener());</p>
<p>      // Add the combo box to the panel.<br />
      dormPanel.add(dormBox);<br />
   }<br />
   private void buildPlanPanel()<br />
   {<br />
      // Create a panel to hold the combo box.<br />
      planPanel = new JPanel();</p>
<p>      // Create the combo box<br />
      planBox = new JComboBox(plan);</p>
<p>      // Register an action listener.<br />
      planBox.addActionListener(new ComboBoxListener());</p>
<p>      // Add the combo box to the panel.<br />
      planPanel.add(planBox);<br />
   }<br />
   private double gettotal()<br />
   {<br />
   double dormplantotal;<br />
   double dormtotal = 0;<br />
   double plantotal = 0;</p>
<p>      String selection = (String) dormBox.getSelectedItem();<br />
      if(selection.equals(&#8220;Allen Hall&#8221;))<br />
      dormtotal = allen;<br />
      else if(selection.equals(&#8220;Pike Hall&#8221;))<br />
      dormtotal = pike;<br />
      else if(selection.equals(&#8220;Farthing Hall&#8221;))<br />
      dormtotal = farthing;<br />
      else if(selection.equals(&#8220;University Suites&#8221;))<br />
      dormtotal = university;<br />
      String selection1 = (String) planBox.getSelectedItem();<br />
      if(selection1.equals(&#8220;7 Meals Per Week&#8221;))<br />
      plantotal = seven;<br />
      else if(selection1.equals(&#8220;14 Meals Per Week&#8221;))<br />
      plantotal = fourteen;<br />
      else if(selection1.equals(&#8220;Unlimited Meals&#8221;))<br />
      plantotal = unlimited;<br />
      //Calculate the total cost<br />
      dormplantotal = dormtotal + plantotal;</p>
<p>      return dormplantotal;<br />
}</p>
<p>   DecimalFormat dollar = new DecimalFormat(&#8220;$  #0.00&#8243;);<br />
private class ComboBoxListener implements ActionListener {</p>
<p>public void actionPerformed(ActionEvent e)<br />
{<br />
// Get the selected Items from the combo box<br />
String dormSelection = (String) dormBox.getSelectedItem();<br />
String planSelection = (String) planBox.getSelectedItem();</p>
<p>if( (dormSelection != &#8221; &#8220;) &#038;&#038; (planSelection != &#8221; &#8220;) )<br />
JOptionPane.showMessageDialog(null, &#8220;Your total for &#8221; + dormBox.getSelectedItem() + &#8221; and &#8221; + planBox.getSelectedItem() + &#8221; is &#8221; + dollar.format(gettotal()));<br />
}<br />
}<br />
}</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by Vaibhav</i><br/>When you are initializing plan array you have written wrong<br />
You have written last element as<br />
Unilimited Meals<br />
that should be<br />
Unlimited Meals</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/java-program-almost-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can anyone tell me what is wrong with this html code?</title>
		<link>http://www.creative-planners.com/can-anyone-tell-me-what-is-wrong-with-this-html-code/</link>
		<comments>http://www.creative-planners.com/can-anyone-tell-me-what-is-wrong-with-this-html-code/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 20:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wedding Planning]]></category>
		<category><![CDATA[anyone]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tell]]></category>
		<category><![CDATA[this]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/can-anyone-tell-me-what-is-wrong-with-this-html-code/</guid>
		<description><![CDATA[by ChelseyArnal Question: Can anyone tell me what is wrong with this html code? Service Request Form First name: Last name: Date of Event: Phone Number: Email: Bride Groom Planner Planning a Wedding Planning a Reunion Planning a Party Other** Other**: Service(s) Requested: Photography Vidoegraphy Photo/Video Custom Designs Comments: Click here for Homepage Mike, that [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin:5px;font-size:80%;"><img alt=""Wedding Planners"" src="http://farm6.staticflickr.com/5184/5616112995_4909b5dbe9_m.jpg" width="160"/><br/> by <a rel="nofollow" href="http://www.flickr.com/photos/59587613@N07/5616112995">ChelseyArnal</a></div>
<p><strong><i>Question</i>: Can anyone tell me what is wrong with this html code?</strong><br />
<!doctype html><br />
<html><br />
  <head><br />
    <meta charset="utf-8"></p>
<p>  </head><br />
  <body> </p>
<p><b><center><br />
<h1>Service Request Form</h1>
<p></center></b></p>
<p><b></p>
<p><form>
First name:<br />
<input type="text" name="firstname" />
Last name:<br />
<input type="text" name="lastname" />
Date of Event:<br />
<input type="text" name="Date" />
Phone Number:<br />
<input type="text" name="Phone" />
Email:<br />
<input type="text" name="Email" />
</form>
</p>
<p></b></p>
<form>
<input type="radio" name="sex" value="bride" /> Bride</p>
<input type="radio" name="sex" value="groom" /> Groom</p>
<input type="radio" name="sex" value="Planner" /> Planner<br />
</form>
</p>
<form>
<input type="checkbox" name="type" value="Wedding" /> Planning a Wedding</p>
<input type="checkbox" name="type" value="reunion" /> Planning a Reunion</p>
<input type="checkbox" name="type" value="party" /> Planning a Party</p>
<input type="checkbox" name="type" value="other" /> Other**<br />
Other**:<br />
<input type="text" name="Other Type" />
</form>
</p>
<p>
 <b><br />
<form> Service(s) Requested:<b/></p>
<select name="Select a Service">
<option value="1"> Photography</p>
<option value="2"> Vidoegraphy</p>
<option value="3"> Photo/Video</p>
<option value="4"> Custom Designs<br />
  </select>
</p></form>
</p>
<form>
<table>
<tr>
<b>
<td>Comments:</td>
<p><b/></p>
<td>
<textarea rows="3" cols="20" name="comments"></textarea>
</td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" value="Submit" />
</td>
</tr>
</table>
</form>
<form action="mailto:info@troyallenmoore.com" method="get" enctype="text/plain">
</form>
<p>
<b><br />
Click here for Homepage<br />
<b/>
</p>
</form>
<p></body><br />
</html><br />
Mike, that did work either. When I send the form, it doesnt come to listed email address.</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by Tinker</i><br/>All I found was the last three paragraphs have a slash after the b and it should be before the b to close. There may be more but that&#8217;s what I could find at a quick glance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/can-anyone-tell-me-what-is-wrong-with-this-html-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why not question 9/11, when the USA has a history of staging terrorist attacks to enact it&#8217;s agenda?</title>
		<link>http://www.creative-planners.com/why-not-question-911-when-the-usa-has-a-history-of-staging-terrorist-attacks-to-enact-its-agenda/</link>
		<comments>http://www.creative-planners.com/why-not-question-911-when-the-usa-has-a-history-of-staging-terrorist-attacks-to-enact-its-agenda/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 20:36:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[9/11]]></category>
		<category><![CDATA[agenda]]></category>
		<category><![CDATA[attacks]]></category>
		<category><![CDATA[enact]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[It's]]></category>
		<category><![CDATA[Question]]></category>
		<category><![CDATA[staging]]></category>
		<category><![CDATA[terrorist]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/why-not-question-911-when-the-usa-has-a-history-of-staging-terrorist-attacks-to-enact-its-agenda/</guid>
		<description><![CDATA[Question: Why not question 9/11, when the USA has a history of staging terrorist attacks to enact it&#8217;s agenda? Most people cannot imagine the lengths the ruling elites will go to, to increase their power, money, and control. Dubya&#8217;s puppeteers policies are not new :- “Naturally the common people don&#8217;t want war; neither in Russia, [...]]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question</i>: Why not question 9/11, when the USA has a history of staging terrorist attacks to enact it&#8217;s agenda?</strong><br />
Most people cannot imagine the lengths the ruling elites will go to, to increase their power, money, and control.</p>
<p>Dubya&#8217;s puppeteers policies are not new :-</p>
<p>“Naturally the common people don&#8217;t want war; neither in Russia, nor in England, nor in America, nor in Germany. That is understood. But after all, it is the leaders of the country who determine policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is to tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in any country.”<br />
Hermann Göring(Nazi) 1946 Nuremberg Trials</p>
<p>The US. Government has lied about many wars. The increase of troops in Vietnam was based on an attack in the Tonkin Gulf that never happened. Some say that Roosevelt knew about Pearl Harbor and let it happen to get support to join World War Two. The Spanish-American War (Remember the Maine!) was also based on a hoax.<br />
Not to mention the numerous covert wars that they lied about. Iran-Contra, the overthrow of Mossadegh in Iran, Allende in Chile, Arbenz in Guatemala. Also the war in Panama, against someone who was on the payroll of the CIA. Cuba as well. The Bay of Pigs invasion was supported by the CIA, and the people who invaded were trained by the CIA in Guatemala. </p>
<p>As for 9/11 this is the origin of the plan:-<br />
&#8220;We are on the verge of a global transformation. All we need is the right major crisis and the nations will accept the New World Order.&#8221;<br />
David Rockefeller: Statement to the Untied Nations Business Council in September 1994</p>
<p>&#8220;For more than a century, ideological extremists at either end of the political spectrum have seized upon well-publicized  incidents to attack the Rockefeller family for the inordinate influence they claim we wield over American political and economic institutions. Some even believe we are part of a secret cabal working against the best interests of the United States, characterizing my family and me as &#8216;internationalists&#8217; and of conspiring with other around the world to build a more integrated global political and economic structure &#8211; one world, if you will. If that is the charge, I stand guilty, and I am proud of it.&#8221; David Rockefellers memoirs (2002)</p>
<p>And this is what Dubya&#8217;s puppeteers had to say in 2000;-<br />
&#8220;Further, the process of transformation, even if it brings revolutionary change, is likely to be a long one, absent some catastrophic and catalyzing event – like a new Pearl Harbor&#8221;<br />
Project for the New American Century (2000)</p>
<p>Which brings into question 9/11/(2001), which was never investigated properly, and has been hijacked in order to enact Dubya&#8217;s agenda and the subsequent illegitimate wars.<br />
The 9/11 documentary Loose Change 2nd edition is available free on Youtube:-</p>
<p>Part 1 http://www.youtube.com/watch?v=eGEb40o17yE&#038;search=loose%20change%202nd%20edition</p>
<p>Part 2 http://www.youtube.com/watch?v=SOVWBQKUpsU&#038;search=loose%20change%202nd%20edition</p>
<p>Part 3 http://www.youtube.com/watch?v=PtV1uxYnu0w&#038;search=loose%20change%202nd%20edition</p>
<p>Decide for yourselves people <img src='http://www.creative-planners.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I do agree with Dubya on one thing:-</p>
<p>&#8220;I think one way for us to end up being viewed as the ugly American is for us to go around the world saying, &#8220;We do it this way. So should you.&#8221;<br />
&#8220;I think the United States must be humble and must be proud and confident of our values, but humble in how we treat nations that are figuring out how to chart their own course.&#8221;<br />
George W. Bush &#8211; 2nd presidential debate Oct 11th 2000</p>
<p>http://abcnews.go.com/US/story?id=92662&#038;page=1</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by Wounded duckmate</i><br/>Reality check!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/why-not-question-911-when-the-usa-has-a-history-of-staging-terrorist-attacks-to-enact-its-agenda/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Wedding Planning Advice- How to Reduce Wedding Stress</title>
		<link>http://www.creative-planners.com/wedding-planning-advice-how-to-reduce-wedding-stress/</link>
		<comments>http://www.creative-planners.com/wedding-planning-advice-how-to-reduce-wedding-stress/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 20:35:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wedding Planning]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Reduce]]></category>
		<category><![CDATA[Stress]]></category>
		<category><![CDATA[Wedding]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/wedding-planning-advice-how-to-reduce-wedding-stress/</guid>
		<description><![CDATA[www.elegantweddingcenterpieces.com Wedding planning advice on how to reduce stress when organizing your wedding by wedding planner Shawnta Blaine. To purchase wedding invitations visit http For elegant wedding accessories, favors and gifts visit www.stressawaybridalshop.com]]></description>
			<content:encoded><![CDATA[<p>				<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/fat3cBunTIk?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/fat3cBunTIk?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>www.elegantweddingcenterpieces.com Wedding planning advice on how to reduce stress when organizing your wedding by wedding planner Shawnta Blaine. To purchase wedding invitations visit http For elegant wedding accessories, favors and gifts visit www.stressawaybridalshop.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/wedding-planning-advice-how-to-reduce-wedding-stress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Iran and Turkey people are coming to Christ, the church is growing at a phenomenal rate?</title>
		<link>http://www.creative-planners.com/in-iran-and-turkey-people-are-coming-to-christ-the-church-is-growing-at-a-phenomenal-rate/</link>
		<comments>http://www.creative-planners.com/in-iran-and-turkey-people-are-coming-to-christ-the-church-is-growing-at-a-phenomenal-rate/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 20:35:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[Christ]]></category>
		<category><![CDATA[Church]]></category>
		<category><![CDATA[coming]]></category>
		<category><![CDATA[growing]]></category>
		<category><![CDATA[Iran]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[phenomenal]]></category>
		<category><![CDATA[rate]]></category>
		<category><![CDATA[Turkey]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/in-iran-and-turkey-people-are-coming-to-christ-the-church-is-growing-at-a-phenomenal-rate/</guid>
		<description><![CDATA[by awayfromkeyboard Question: In Iran and Turkey people are coming to Christ, the church is growing at a phenomenal rate? Christians are caught in the middle. &#8220;If the Islamists gain power, obviously that will mean an increase in persecution. But the secularists are also opposed to the church. They want basically no religion. They want [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin:5px;font-size:80%;"><img alt=""Event Planning"" src="http://farm1.staticflickr.com/89/237133300_f94ccb260c_m.jpg" width="160"/><br/> by <a rel="nofollow" href="http://www.flickr.com/photos/93552678@N00/237133300">awayfromkeyboard</a></div>
<p><strong><i>Question</i>: In Iran and Turkey people are coming to Christ, the church is growing at a phenomenal rate?</strong><br />
Christians are caught in the middle. &#8220;If the Islamists gain power, obviously that will mean an increase in persecution. But the secularists are also opposed to the church. They want basically no religion. They want the people to be secular. But to be Turkish&#8211; in their culture&#8211;is to be Muslim. </p>
<p>Persecution has already hit the Christian community. Three Christians were killed by young radical Muslims in April. Nettleton just returned from meeting with the survivors. He says, &#8220;There was no sense that God had let them down or that somehow this event happened while God wasn&#8217;t looking. There was a very clear sense that this was God&#8217;s plan.&#8221;<br />
Jesus says that if they persecuted Him, they will persecute us as well.</p>
<p>Remember the words I spoke to you: &#8216;No servant is greater than his master.&#8217; If they persecuted me, they will persecute you also (John 15:20).</p>
<p> Blessed are those who are persecuted because of righteousness, for theirs is the kingdom of heaven. &#8221;<br />
Thoughts?</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by spysdie</i><br/>NWO</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/in-iran-and-turkey-people-are-coming-to-christ-the-church-is-growing-at-a-phenomenal-rate/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>First Dance For A Wedding?</title>
		<link>http://www.creative-planners.com/first-dance-for-a-wedding/</link>
		<comments>http://www.creative-planners.com/first-dance-for-a-wedding/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 20:36:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wedding Planning]]></category>
		<category><![CDATA[Dance]]></category>
		<category><![CDATA[First]]></category>
		<category><![CDATA[Wedding]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/first-dance-for-a-wedding/</guid>
		<description><![CDATA[Question: First Dance For A Wedding? This was just a thought of mine, but what do you think of &#8220;I Want To Know Your Plans&#8221; By Say Anything for a first dance song? I really like it and I think its cute. Input would be great thanks! Answer: Answer by Player BYou should use celion [...]]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question</i>: First Dance For A Wedding?</strong><br />
This was just a thought of mine, but what do you think of &#8220;I Want To Know Your Plans&#8221; By Say Anything for a first dance song? I really like it and I think its cute. Input would be great thanks!</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by Player B</i><br/>You should use celion deion because you loved me&#8230;Thats gonna be in my wedding..Im a guy and everytime i hear that song i tear up a lil</p>
<p>One of my favriote songs of all time</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/first-dance-for-a-wedding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>All Part of God&#8217;s Grand Plan?</title>
		<link>http://www.creative-planners.com/all-part-of-gods-grand-plan/</link>
		<comments>http://www.creative-planners.com/all-part-of-gods-grand-plan/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 20:35:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[god's]]></category>
		<category><![CDATA[Grand]]></category>
		<category><![CDATA[part]]></category>
		<category><![CDATA[plan]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/all-part-of-gods-grand-plan/</guid>
		<description><![CDATA[by awayfromkeyboard Question: All Part of God&#8217;s Grand Plan? If you are a Christian, you are extremely familiar with &#8220;God&#8217;s plan.&#8221; This is the way that Christians traditionally explain things like amputations, cancer, hurricanes and car accidents. You can see how pervasive &#8220;God&#8217;s plan&#8221; is by looking in Christian inspirational literature. For example, if we [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin:5px;font-size:80%;"><img alt=""Event Planning"" src="http://farm1.staticflickr.com/85/237134111_843aa6d368_m.jpg" width="160"/><br/> by <a rel="nofollow" href="http://www.flickr.com/photos/93552678@N00/237134111">awayfromkeyboard</a></div>
<p><strong><i>Question</i>: All Part of God&#8217;s Grand Plan?</strong><br />
If you are a Christian, you are extremely familiar with &#8220;God&#8217;s plan.&#8221; This is the way that Christians traditionally explain things like amputations, cancer, hurricanes and car accidents.</p>
<p>You can see how pervasive &#8220;God&#8217;s plan&#8221; is by looking in Christian inspirational literature. For example, if we look in the book A Purpose Driven Life by Rick Warren, we find this remarkable paragraph in Chapter 2:</p>
<p>    Because God made you for a reason, he also decided when you would be born and how long you would live. He planned the days of your life in advance, choosing the exact time of your birth and death. The Bible says, &#8220;You saw me before I was born and scheduled each day of my life before I began to breathe. Every day was recorded in your book!&#8221; [Psalm 139:16] </p>
<p>There is also this:</p>
<p>    Regardless of the circumstances of your birth or who your parents are, God had a plan in creating you. </p>
<p>Under this view of the universe, God plans everything.</p>
<p>Take a moment and think about what Rick Warren said. Rick said, &#8220;He planned the days of your life in advance, choosing the exact time of your birth and death.&#8221; Let&#8217;s examine one simple implication of this statement. What this means is that God pre-planned every abortion that has taken place on our planet.</p>
<p>If you think about this implication for a few moments, you will begin to realize how impossible &#8220;God&#8217;s plan&#8221; is. If the concept of &#8220;God&#8217;s plan&#8221; is true, you can first of all see that God wants us to be aborting children. Every single abortion is planned by God, so God must be doing it for a reason. Second, you can see that both the mother who requests the abortion and the doctor who performs it are blameless. Since it is God who planned the abortion of the child (God chose the &#8220;exact time&#8221; of the death, according to Rick Warren), the mother and doctor are simply puppets who are fulfilling God&#8217;s plan. You can also see that all the Christians who are fighting against abortion are missing the point. They are actually fighting against God&#8217;s plan, and their fight is completely futile. God is the all-powerful ruler of the universe, and his plan is for more than a million children a year to die in the United States through abortion. [ref] Each one of those abortions was meticulously planned by God, so fighting against abortion is a totally wasted effort.</p>
<p>If you are a Christian, what you are thinking is, &#8220;God does not intend for us to perform abortions!&#8221; But if you believe what Rick is saying, then you are obviously incorrect. God is actually the direct cause of every abortion on earth. If you find that notion to be uncomfortable, I would agree with you. Unfortunately, that is the logical outcome of God&#8217;s plan.</p>
<p>In order to better understand God&#8217;s plan, let&#8217;s look at one of the biggest global events that humans have ever witnessed: World War II. According to Encarta:</p>
<p>    The human cost [of WWII], not including between 5.6 million and 5.9 million Jews killed in the Holocaust who were indirect victims of the war, is estimated to have been 55 million dead—25 million of those military and 30 million civilian. </p>
<p>In addition, according to Encarta:</p>
<p>    61 countries participated in WWII<br />
    1.7 billion people participated in WWII<br />
    75% of all human beings alive at the time participated in WWII </p>
<p>World War II was obviously a major disaster &#8212; perhaps the most horrific event the world has ever seen. It is safe to say that nearly every human being on planet Earth prayed to God that this war would end.</p>
<p>And don&#8217;t forget Adolph Hitler. He was evil incarnate, and Hitler is well known for the atrocious things he did. It is interesting to look at Adolph Hitler in the context of prayer, and understand how Christians try to reconcile an all-loving, prayer-answering God with such a hateful man.</p>
<p>What I would like you to do right now is to consider this statement: &#8220;Hitler is part of God&#8217;s Plan.&#8221; Think about what Rick said:</p>
<p>    He planned the days of your life in advance, choosing the exact time of your birth and death. The Bible says, &#8220;You saw me before I was born and scheduled each day of my life before I began to breathe. Every day was recorded in your book!&#8221; [Psalm 139:16] </p>
<p>Rick also says:</p>
<p>    God never does anything accidentally, and he never makes mistakes. He has a reason for everything he creates. Every plant and every animal was planned by God, and every person was designed with a purpose in mind. </p>
<p>If God has a divine plan for each of us, then he had a divine plan for Hitler too. It is when you stop to think about it deeply that the contradictions hit you.</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by Pulsar</i><br/>+1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/all-part-of-gods-grand-plan/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Leimert Park Book Fair/Children&#8217;s Village 6/21/2011</title>
		<link>http://www.creative-planners.com/leimert-park-book-fairchildrens-village-6212011/</link>
		<comments>http://www.creative-planners.com/leimert-park-book-fairchildrens-village-6212011/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 20:37:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[6/21/2011]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Fair/Children's]]></category>
		<category><![CDATA[Leimert]]></category>
		<category><![CDATA[park]]></category>
		<category><![CDATA[Village]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/leimert-park-book-fairchildrens-village-6212011/</guid>
		<description><![CDATA[Coordinated by Actress/Producer/Event Planner, Nina Womack, this 5 min. clip shows highlights of the Children&#8217;s Village at the Leimert Park Book Fair 2011 RegOnline, a product of Active Network &#124; events, video tour. The video is a quick 5 minutes overview of how the RegOnline product works from sign up to taking your event live. [...]]]></description>
			<content:encoded><![CDATA[<p>				<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/kobQwXvDZxo?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/kobQwXvDZxo?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>Coordinated by Actress/Producer/Event Planner, Nina Womack, this 5 min. clip shows highlights of the Children&#8217;s Village at the Leimert Park Book Fair 2011
</p>
<p>				<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/l5A7Hd3laqg?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/l5A7Hd3laqg?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>RegOnline, a product of Active Network | events, video tour. The video is a quick 5 minutes overview of how the RegOnline product works from sign up to taking your event live. From Attendee Management, Payment Processing and Security, Agenda, Travel and Lodging RegOnline is the perfect solution to making your next event a success. See why 10000 event planners have chosen RegOnline to save time, increase ROI and better organize their events.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/leimert-park-book-fairchildrens-village-6212011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Planning Series: Getting rid of Non Muthaf&#8221;ing Factors</title>
		<link>http://www.creative-planners.com/wedding-planning-series-getting-rid-of-non-muthafing-factors/</link>
		<comments>http://www.creative-planners.com/wedding-planning-series-getting-rid-of-non-muthafing-factors/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 20:38:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wedding Planning]]></category>
		<category><![CDATA[Factors]]></category>
		<category><![CDATA[Getting]]></category>
		<category><![CDATA[Muthafing]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Series]]></category>
		<category><![CDATA[Wedding]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/wedding-planning-series-getting-rid-of-non-muthafing-factors/</guid>
		<description><![CDATA[I&#8217;m good! What about u! I left out Sooooo much but it is what it is&#8230; NEXT]]></description>
			<content:encoded><![CDATA[<p>				<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/RZPL2XovzvI?fs=1"></param><param name="allowFullScreen" value="true"></param>
				<embed src="http://www.youtube.com/v/RZPL2XovzvI?fs=1&#038;rel=0" type="application/x-shockwave-flash" width="425" height="355" allowfullscreen="true"></embed></object></p>
<p>
<div style="float:left;margin:5px;"><img src=http://i.ytimg.com/vi/RZPL2XovzvI/default.jpg /></div>
<p>I&#8217;m good! What about u! I left out Sooooo much but it is what it is&#8230; NEXT</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/wedding-planning-series-getting-rid-of-non-muthafing-factors/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Prayer seems like a huge waste of time?</title>
		<link>http://www.creative-planners.com/prayer-seems-like-a-huge-waste-of-time/</link>
		<comments>http://www.creative-planners.com/prayer-seems-like-a-huge-waste-of-time/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:35:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Event Planning]]></category>
		<category><![CDATA[huge]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[prayer]]></category>
		<category><![CDATA[seems]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[waste]]></category>

		<guid isPermaLink="false">http://www.creative-planners.com/prayer-seems-like-a-huge-waste-of-time/</guid>
		<description><![CDATA[by TEDxKrakow Question: Prayer seems like a huge waste of time? According to some sects of Christianity, God has a &#8220;divine plan&#8221; &#8211; there is a predetermined course of events that God set forth when he created us all. Predetermined &#8211; that means that my writing this sentence was a part of God&#8217;s plan. I [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;margin:5px;font-size:80%;"><img alt=""Event Planning"" src="http://farm6.staticflickr.com/5316/5909616619_9d5a5e59cb_m.jpg" width="160"/><br/> by <a rel="nofollow" href="http://www.flickr.com/photos/55215101@N02/5909616619">TEDxKrakow</a></div>
<p><strong><i>Question</i>: Prayer seems like a huge waste of time?</strong><br />
According to some sects of Christianity, God has a &#8220;divine plan&#8221; &#8211; there is a predetermined course of events that God set forth when he created us all.  Predetermined &#8211; that means that my writing this sentence was a part of God&#8217;s plan.  I wouldn&#8217;t have done it if it wasn&#8217;t in God&#8217;s plan.  If that&#8217;s the case, then why should I bother praying to God for anything (praying only in the sense of asking for something to happen).  If someone&#8217;s mother goes into surgery and they pray for a safe recovery, what good will it do if He has already decided she won&#8217;t make it?</p>
<p>On a much larger scale, why would God hear the prayers to help that guy&#8217;s mother survive her surgery but then turn around and ignore the prayers of the 10 million innocent people who perished in the Holocaust?  What possible explanation could there be that God decided to ignore the prayers of those that perished in the 911 attacks?  Or in the Vietnam War? I&#8217;m not even going to get started on why God would allow the Crusades to happen in his name.  The bottom line is this: if prayers can be heard, then millions of life-changing prayers are ignored every day.  Why would a benevolent, merciful, loving, caring God do that?<br />
&#8220;Prayer gives people hope&#8221;&#8230;.incorrect.  Prayer gives people false hope.  It is alright to hope for something and wish for it come true.  Praying implies that there is a chance, however small, that the mere fact that you asked for them to come true may have an effect on them occuring.  And if prayer can give people false hope, think how dangerous it can be.  Imagine you are a Jew living in Auschwitz the day before the occupation.  You know the occupation is coming but decide to stay and pray that God will watch over your family&#8230;.</p>
<p>&#8220;God helps those who help themselves&#8221;<br />
&#8220;That&#8217;s because you have no faith in God, and don&#8217;t belive he&#8217;s listening&#8230;.&#8221;  You&#8217;re not listening.  I didn&#8217;t say it was my prayers who are being ignored.  There were tens of thousands of extremely religious and devout Jews that were wiped off the face of the earth.  They prayed every day, even before they asked for what they needed most &#8211; for the God they believed in all their lives to save them.  Instead he left them to choke in gas chambers at the hands of evil men.    </p>
<p>As for your instance that &#8220;He is (listening)!&#8221; You have no proof.  Only blind and ignorant faith.  And if he was listening, screw him for ignoring the pleas of his devout followers.</p>
<p>&#8220;Christians says relgion is a test of faith.  What if faith is a test of logic?&#8221;<br />
&#8220;In the case of the Holocaust. the 10 million people died knowing that they were going to die and their prayers were for the salvation of their soul. This is why God did not change the course of the war but allowed them to die.&#8221;</p>
<p>Really?  REALLY?  So you mean to tell me of the 10 million people, not one person every prayed to have their life saved &#8211; they all ONLY prayed for the salvation of their soul?  okaaay&#8230;.several inconsistencies.  1) you can&#8217;t possibly know what every one of the 10 million people was thinking, &#8220;only God knows that&#8221; 2) even if they ALL prayed for their salvation, how do you know all their prayers were answered? 3) how could you know why God really allowed them to die.  you don&#8217;t know God&#8217;s &#8220;master plan&#8221;</p>
<p>&#8220;He who thinks he knows it all knows nothing&#8221;<br />
&#8220;&#8230;.meanings can be lost or changed if the translation is translated more than once to make people finally accept the meanings that they want. it is best to go directly to the source in order to have the best most accurate meaning.&#8221;</p>
<p>Perhaps you don&#8217;t realize how fundamentally you have just proved my point.  You just told me to go read a specific version of the Bible because you want to make sure you are not reading a mistranslation.  The Bible was originally written in Aramaic, a now-dead language.  How can you, who live your life based on your version of the Bible, be so sure that yours isn&#8217;t mistranslated too.  How can any of us truly know what the real original translation meant.  People still argue over the technical translation of some Shakespearean phrases and that was less than 400 years ago in a language very similar to modern day English.</p>
<p><strong>Answer:</strong></p>
<p><i>Answer by gutbucket</i><br/>That&#8217;s because it is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creative-planners.com/prayer-seems-like-a-huge-waste-of-time/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

