


<script language="JavaScript" charset="utf-8">


		



		// remote scripting library



		// (c) copyright 2005 modernmethod, inc



		var sajax_debug_mode = false;



		var sajax_request_type = "GET";



		var sajax_target_id = "";



		var sajax_failure_redirect = "";



		



		function sajax_debug(text) {



			if (sajax_debug_mode)



				alert(text);



		}



		



 		function sajax_init_object() {



 			sajax_debug("sajax_init_object() called..")



 			



 			var A;



 			



 			var msxmlhttp = new Array(



				'Msxml2.XMLHTTP.5.0',



				'Msxml2.XMLHTTP.4.0',



				'Msxml2.XMLHTTP.3.0',



				'Msxml2.XMLHTTP',



				'Microsoft.XMLHTTP');



			for (var i = 0; i < msxmlhttp.length; i++) {



				try {



					A = new ActiveXObject(msxmlhttp[i]);



				} catch (e) {



					A = null;



				}



			}



 			



			if(!A && typeof XMLHttpRequest != "undefined")



				A = new XMLHttpRequest();



			if (!A)



				sajax_debug("Could not create connection object.");



			return A;



		}



		



		var sajax_requests = new Array();



		



		function sajax_cancel() {



			for (var i = 0; i < sajax_requests.length; i++) 



				sajax_requests[i].abort();



		}



		



		function sajax_do_call(func_name, args) {



			var i, x, n;



			var uri;



			var post_data;



			var target_id;



			



			sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);



			target_id = sajax_target_id;



			if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "") 



				sajax_request_type = "GET";



			



			uri = "http://themagicnetwork.com/magic-forum/fb_rss?no_html=1";


			if (sajax_request_type == "GET") {



			



				if (uri.indexOf("?") == -1) 



					uri += "?rs=" + escape(func_name);



				else



					uri += "&rs=" + escape(func_name);



				uri += "&rst=" + escape(sajax_target_id);



				uri += "&rsrnd=" + new Date().getTime();



				



				for (i = 0; i < args.length-1; i++) 



					uri += "&rsargs[]=" + escape(args[i]);







				post_data = null;



			} 



			else if (sajax_request_type == "POST") {



				post_data = "rs=" + escape(func_name);



				post_data += "&rst=" + escape(sajax_target_id);



				post_data += "&rsrnd=" + new Date().getTime();



				



				for (i = 0; i < args.length-1; i++) 



					post_data = post_data + "&rsargs[]=" + escape(args[i]);



			}



			else {



				alert("Illegal request type: " + sajax_request_type);



			}



			



			x = sajax_init_object();



			if (x == null) {



				if (sajax_failure_redirect != "") {



					location.href = sajax_failure_redirect;



					return false;



				} else {



					sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);



					return false;



				}



			} else {



				x.open(sajax_request_type, uri, true);



				// window.open(uri);



				



				sajax_requests[sajax_requests.length] = x;



				



				if (sajax_request_type == "POST") {



					x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");



					x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");



				}



			



				x.onreadystatechange = function() {



					if (x.readyState != 4) 



						return;







					sajax_debug("received " + x.responseText);



				



					var status;



					var data;



					var txt = x.responseText.replace(/^\s*|\s*$/g,"");



					status = txt.charAt(0);



					data = txt.substring(2);







					if (status == "") {



						// let's just assume this is a pre-response bailout and let it slide for now



					} else if (status == "-") 



						alert("Error: " + data);



					else {



						if (target_id != "") 



							document.getElementById(target_id).innerHTML = eval(data);



						else {



							try {



								var callback;



								var extra_data = false;



								if (typeof args[args.length-1] == "object") {



									callback = args[args.length-1].callback;



									extra_data = args[args.length-1].extra_data;



								} else {



									callback = args[args.length-1];



								}



								callback(eval(data), extra_data);



							} catch (e) {



								sajax_debug("Caught error " + e + ": Could not eval " + data );



							}



						}



					}



				}



			}



			



			sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);



			x.send(post_data);



			sajax_debug(func_name + " waiting..");



			delete x;



			return true;



		}



		



		


		



		// wrapper for whatru


		



		function x_whatru() {



			sajax_do_call("whatru",



				x_whatru.arguments);



		}



		



		  

	function do_save(status) {



        document.getElementById('whatrudiv2').innerHTML = status;



    }



    function wrugetTextBox() {



        document.getElementById("whatrudiv2").style.display = 'none'; 

        document.getElementById("whatrudiv1").style.display = ''; 

    }



    function wrusaveStatus(id, uname, defaulttext){

        var status;

        document.getElementById("whatrudiv1").style.display = 'none';

        document.getElementById("whatrudiv2").style.display = '';

        status = document.getElementById("statusText").value; 
        
        //uncomment  the line below to enable utf8 encoding, you also need to adjust the field length of cb_rustatus in comprofiler table of your joomla database because it is limited to 255 characters
        //status = convertChar2CP(status);
               
        x_whatru(id, uname, status, defaulttext, do_save);         

    }       



    function wruclearStatus(id, uname, defaulttext){

        var status;

        document.getElementById("whatrudiv1").style.display = 'none';

        document.getElementById("whatrudiv2").style.display = '';       

        document.getElementById("statusText").value = 'is';

        status = document.getElementById("statusText").value;
       
        x_whatru(id, uname, status, defaulttext, do_save);

    }
    
    
    
  function convertCP2DecNCR ( textString ) {
  var outputString = "";
  textString = textString.replace(/^\s+/, '');
  if (textString.length == 0) { return ""; }
  textString = textString.replace(/\s+/g, ' ');
  var listArray = textString.split(' ');
  for ( var i = 0; i < listArray.length; i++ ) {
    var n = parseInt(listArray[i], 16);
    outputString += ('&#' + n + ';');
  }
  return( outputString );
  }
  
  function convertChar2CP ( textString ) { 
    var haut = 0;
    var n = 0;
    CPstring = '';
    for (var i = 0; i < textString.length; i++) {
        var b = textString.charCodeAt(i); 
        if (b < 0 || b > 0xFFFF) {
            CPstring += 'Error ' + dec2hex(b) + '!';
        }
        if (haut != 0) {
            if (0xDC00 <= b && b <= 0xDFFF) {
                CPstring += dec2hex(0x10000 + ((haut - 0xD800) << 10) + (b - 0xDC00)) + ' ';
                haut = 0;
                continue;
            }else {
                CPstring += '!erreur ' + dec2hex(haut) + '!';
                haut = 0;
            }
        }
        if (0xD800 <= b && b <= 0xDBFF) {
            haut = b;
        }
        else {
            CPstring += dec2hex(b) + ' ';
        }
    }
        CPstring = CPstring.substring(0, CPstring.length-1);
    
        return convertCP2DecNCR(CPstring) ;   
  }
  
  function dec2hex ( textString ) {
 return (textString+0).toString(16).toUpperCase();
 }
   
  
  
  

    
    

</script>

<link rel="stylesheet" type="text/css" href="components/com_comprofiler/plugin/user/plug_cbwhatareyoudoing/whatru.css">


<?xml version="1.0" encoding="utf-8"?>
<!-- generator="Kunena 1.5.11"> -->
<rss version="0.91">
    <channel>
        <title>The Magic Network - Forum</title>
        <description>Kunena Site Syndication</description>
        <link>http://themagicnetwork.com/</link>
        <lastBuildDate>Thu, 09 Sep 2010 21:15:10 -0400</lastBuildDate>
        <generator>Kunena 1.5.11</generator>
        <image>
	        <url>http://themagicnetwork.com/components/com_kunena/template/defaul_ex_formality_gray/images/english/emoticons/rss.gif</url>
	        <title>Powered by Kunena</title>
	        <link>http://themagicnetwork.com/</link>
	        <description>Kunena Site Syndication</description>
        </image>
        <item>
            <title>Subject: Imagine this... - by: Rufiange</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6138-imagine-this#6148</link>
            <description>I like that idea  </description>
            <pubDate>Thu, 09 Sep 2010 20:48:53 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Mr. Mikame has just passed away - by: david leon</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6141-mr-mikame-has-just-passed-away#6141</link>
            <description>Just found out so I thought I would let everyone know.  Mr. Mikame has been ill for a while and he just passed away. 

keep him and his family in your thoughts. 

sad day for Magic.</description>
            <pubDate>Thu, 09 Sep 2010 11:53:27 -0400</pubDate>
        </item>
        <item>
            <title>Subject: So, what do you do when... - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6124-so-what-do-you-do-when#6137</link>
            <description>This sounds interesting... Can you give us an example?</description>
            <pubDate>Thu, 09 Sep 2010 01:46:36 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Favorite card stab - by: Liderc</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6115-favorite-card-stab#6129</link>
            <description>I've never been a fan of the card stab

I've seen David Blaine do this, but i don't know if it was his variation or another persons</description>
            <pubDate>Wed, 08 Sep 2010 00:01:01 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Upcoming Travel to Spain - by: bobtheodd</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6096-upcoming-travel-to-spain#6126</link>
            <description>I know Aaron Fisher made a trip there in the past year or so and he's always tells people to send him e-mails for help, so I would send him somthing and see what he responds with.  I think he was in Granada, though, but I bet he has connections.</description>
            <pubDate>Mon, 06 Sep 2010 21:46:23 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Are coins superior to cards? - by: MikeK</title>
            <link>http://themagicnetwork.com/magic-forum/18-moneycoin-effects/4917-are-coins-superior-to-cards#6123</link>
            <description> WilliamsB wrote: 
 Personally, I'm all about the cards. I'm just starting to really get into coin magic. Still working on my classic palm, etc. 
I'm almost the exact opposite. I used to be really into coin effects, but now (despite my ham-fistedness) I'm getting more into cards.

I think coins are seen as less 'magical' - most people have them in their pockets, so they have more application for impromptu tricks. Whereas cards lean a bit more towards magic, a bit more conspicuous. 

I suppose - like most things in life - it depends on your circumstances, and what you hope to achieve. These days, I carry both coins and cards with me at all times, just in case.</description>
            <pubDate>Mon, 06 Sep 2010 04:40:50 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Least Favorite Type of Magic - by: MikeK</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6073-least-favorite-type-of-magic?limit=15&amp;start=15#6122</link>
            <description> Kaos Pro wrote: 
 I hate magic where the magician tells a story to try to connect with the audience, but the story is clearly just BS. 

Agreed. Also, if the story is so contrived that it's ridiculous - just designed to deliver an effect - it's really disheartening. Gives a bad name to the art.</description>
            <pubDate>Mon, 06 Sep 2010 04:22:15 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Performing in Loud Places. - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/36-close-up-walk-around-parties-kids/6093-performing-in-loud-places#6120</link>
            <description>High recommendation for metal bending: Liquid Metal...
I totally forgot about that. Not that I don't do it. On the contrary, I do it when even I see a fork that I can handle. (I just forget to list that type of magic.)

And speaking of Reset, I've been doing David Stone's Reset (found in his Real Secrets of Magic vol 2 DVD). Check it out!

http://www.youtube.com/watch?v=0vv6HfpA7J8

It's one of my favorite tricks now!</description>
            <pubDate>Sun, 05 Sep 2010 23:39:21 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Fraudulent Magic Dealer...Boycott - by: andrewjspeirs</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6089-fraudulent-magic-dealerboycott#6117</link>
            <description>This is terrible, I hate when this happens!

Will tell people about this.</description>
            <pubDate>Sun, 05 Sep 2010 19:41:25 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Designing cover art for effects - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/1339-designing-cover-art-for-effects?limit=15&amp;start=15#6106</link>
            <description>I mean, you can always just PM me here, but again, it's out there just in case...

Btw, if anyone else wants to email me about anything (magic related, preferably), by all means, feel free!</description>
            <pubDate>Sun, 05 Sep 2010 05:27:01 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Thoughts on WOW - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6072-thoughts-on-wow#6104</link>
            <description>To be honest, I left my last comment without even seeing the video for WOW 2.0... That was my mistake. I have to admit that I like the ambitious card ending idea; the one where you use the &quot;plastic pieces&quot; to keep you from messing with the deck. I love how it gives you almost the same effect as Hawk 2.0! ...except cheaper and, from what I hear, ALOT less gimmicky. (Although, I think that, if you ARE using a gimmick, it's not all that bad if it doesn't actually look like you're using one.)

However, in my personal opinion, I say &quot;Nay&quot; to both. over gimmicky gimmicks (like Hawk) or unnecessary extra props (like WOW... again, just in my opinion) are just taking away from you. By this, I mean: either you get less credit for YOU doing the magic or you just build unnecessary suspicion. Or, of course, it may just take away from the magician themselves by adding too much &quot;weight&quot;, if you will, for one hit effects.

I DO agree with MM, in a way. If you do mind carrying extra props, or mind facing any of the other  &quot;problems&quot; that may come by using these types of gimmicks, then I believe that they could REALLY hit hard... In a multi-phase routine.</description>
            <pubDate>Sun, 05 Sep 2010 05:23:18 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Rappers that look like magicians - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/71-celebrity-magicians-and-mentalists/6061-rappers-that-look-like-magicians#6083</link>
            <description>LMAO! you guys are crazy! how on earth do you guys find this stuff?!</description>
            <pubDate>Fri, 03 Sep 2010 15:06:45 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Looking for some major help - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/66-large-scalestage-effects/6024-looking-for-some-major-help#6071</link>
            <description>cool!</description>
            <pubDate>Thu, 02 Sep 2010 23:10:01 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Mental Killer - by: Tombadil</title>
            <link>http://themagicnetwork.com/magic-forum/43-general-mentalism-discussion/6049-mental-killer#6067</link>
            <description>loved it very much :)</description>
            <pubDate>Thu, 02 Sep 2010 13:04:35 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Peek Or Tear.. Your Preference? - by: Liderc</title>
            <link>http://themagicnetwork.com/magic-forum/43-general-mentalism-discussion/5578-peek-or-tear-your-preference#6063</link>
            <description> V Marra wrote: 
 True true... it needs to make sense in the context of the presentation... so for &quot;Ashes on Arm&quot; as an example, the CT, combined with burning the pieces, makes total sense. 

Yes, Yes i do concur with that. in that context it would be much wiser to rip and then burn

it's all about the situation</description>
            <pubDate>Wed, 01 Sep 2010 17:15:54 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Psypher by Robert Smith (Universal Impression 2.0) - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6025-psypher-by-robert-smith-universal-impression-20#6060</link>
            <description>For the password... there is a famous mentalist, his first name is theodore, his last name (uncapitalized) is the password.

One of his most famous books is called &quot;Practical Mental Magic&quot; ... if you Google it you will find his full name.</description>
            <pubDate>Mon, 30 Aug 2010 09:05:50 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Can I shuffle those cards? - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6032-can-i-shuffle-those-cards#6059</link>
            <description>i hate when i have a card selected then &quot;lost&quot; in the pack and right b4 i &quot;find&quot; their card(s), the person asks to shuffle. Now, I'm not the best when it comes down to palming... or @ least I don't feel all that comfortable with it...

I like that whole crimping  the card thing. I'm not a big fan of it, but yeah, it sounds like it would work well. And yeah, I love that line! I'm totally going to start using that one!

If anything:
Let's say that the card is &quot;lost&quot; in the deck, and the spectator STILL wants to shuffle, and you find that its only fair to let them, I would just suggest that, right before u do, get a quick peek at what their card is... after they shuffle, just spread through the cards (face up), find their card, and then control it to wherever you need it... (using whatever method you find best suits the situation... duh!)</description>
            <pubDate>Sun, 29 Aug 2010 04:44:04 -0400</pubDate>
        </item>
        <item>
            <title>Subject: What can a coin do? - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/18-moneycoin-effects/5678-what-can-a-coin-do?limit=15&amp;start=15#6042</link>
            <description>I like that idea too... hadn't thought of the temperature changing!</description>
            <pubDate>Fri, 27 Aug 2010 00:00:56 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Magic with nothing. - by: andrewjspeirs</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/5961-magic-with-nothing#6031</link>
            <description>Yeah, zodiac, that's a good one.

It's not something I worry about because I do hypnotism. So I can put on a show anywhere, with just about anyone.

Gets lots of laughs, and sometimes is more magical than magic.</description>
            <pubDate>Thu, 26 Aug 2010 12:21:17 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Classic color change - tips - by: MillionaireMike</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/6020-classic-color-change-tips#6023</link>
            <description>Thanks guys, I too thought the classic change was a bit obvious but after watching this it improved so much so thought I'd share. Glad you enjoyed it!</description>
            <pubDate>Tue, 24 Aug 2010 21:08:49 -0400</pubDate>
        </item>
        <item>
            <title>Subject: introduction - by: powerwords</title>
            <link>http://themagicnetwork.com/magic-forum/2-take-the-stage/5987-introduction#6018</link>
            <description>Dear all, thank you for the nicest replies and the warmest welcome...... 

Really make me feel accepted being here :) 

Thank you</description>
            <pubDate>Mon, 23 Aug 2010 02:38:44 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Creating False Memories - How Legends are Made - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/6001-creating-false-memories-how-legends-are-made#6017</link>
            <description>@Rufiange: At first, I thought the melting card effect being referred to was Kaos by Daniel Garcia. But hey, to get the same effect left in the spectator's head with far less work is, in MY mind, WAY better!</description>
            <pubDate>Sun, 22 Aug 2010 01:58:34 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Who do you think is the most creative magician? - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/5907-who-do-you-think-is-the-most-creative-magician?limit=15&amp;start=15#6016</link>
            <description> Liderc wrote: 
 Not trying to get off topic, but me and you have very similar taste in Mentalist/Magicians 

you seriously have to watch Paul Vigil live.. it is a must in life! Yeah, I got that impression too! And watching Paul Vigil live is def. on my bucket list  ;)</description>
            <pubDate>Sun, 22 Aug 2010 00:53:28 -0400</pubDate>
        </item>
        <item>
            <title>Subject: One for all - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/5964-one-for-all#6015</link>
            <description>@MM - I don't have a lot of theory books right now at the moment unfortunately, but plan on getting some soon, as I feel like I have enough books on effects now.  In David Regal's &quot;Approaching Magic&quot; there are several good essays on magic theory, and an interview with Armando Lucero, so I'll say that is my best theory book at the moment!  It is also great for all around magic for the more intermediate to advanced performer.</description>
            <pubDate>Sun, 22 Aug 2010 00:48:07 -0400</pubDate>
        </item>
        <item>
            <title>Subject: &quot;In&quot; The Hand VS Being &quot;Done&quot; By The Spectator - by: MillionaireMike</title>
            <link>http://themagicnetwork.com/magic-forum/46-patter-and-presentation/5966-qinq-the-hand-vs-being-qdoneq-by-the-spectator#6012</link>
            <description>Just been thinking about this and one thing that came to my mind was Whit Haydn's impromptu card code... I won't go into details of coarse but to the audience there has to be no other explanation then the spectator doing the magic haha  </description>
            <pubDate>Sat, 21 Aug 2010 21:57:29 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Misdirection. - by: andrewjspeirs</title>
            <link>http://themagicnetwork.com/magic-forum/46-patter-and-presentation/2942-misdirection?limit=15&amp;start=15#6006</link>
            <description>This really depends on what you want to accomplish.

But no one can look in two places at once, so make one place more interesting to look at.

There can also be some nice 'internal' misdirection. What I mean by this; If the person you are trying to misdirect, is thinking of something, or a few things are going on. It makes them a little confused, and they are easier to manipulate. 

E.g. If you are trying to steal a card from the pack, as you are about to get the cards shuffled. If you ask the spectator to shuffle, they can do a few things; They could say no, they could watch you intently as you hand them then pack or shuffle no questions asked.
 
It helps to ask them a question, or make them think. &quot;how do you shuffle&quot;, as you give them the deck. This does a few things; they now HAVE to shuffle, and they have internal misdirection. They are thinking about how they shuffle, and hoping no one is watching them shuffle, as not to get embarrassed.

This is some of my views, hope it helps.</description>
            <pubDate>Sat, 21 Aug 2010 20:36:21 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Most performed effect? - by: MillionaireMike</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/5963-most-performed-effect#6002</link>
            <description>Some awesome effects coming through here. Bob... Professor's nightmare is awesome aye! I never used to use it much until I got fiber optics and yet its one of the strongest parts of the routine!</description>
            <pubDate>Sat, 21 Aug 2010 17:57:42 -0400</pubDate>
        </item>
        <item>
            <title>Subject: BIZZARE - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/2-take-the-stage/5985-bizzare#5998</link>
            <description>Welcome Draven!  Good to have you here... sounds like you have an interesting history and premise!  Cheers, V.</description>
            <pubDate>Sat, 21 Aug 2010 17:21:15 -0400</pubDate>
        </item>
        <item>
            <title>Subject: just sayin howdy ya'll - by: Corey Martin</title>
            <link>http://themagicnetwork.com/magic-forum/2-take-the-stage/5919-just-sayin-howdy-yall#5977</link>
            <description>welcome welcome. 

this is such a great and helpful place. i am sure you will find many great ideas and friends here. enjoy!</description>
            <pubDate>Fri, 20 Aug 2010 09:57:56 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Improv shows - by: Corey Martin</title>
            <link>http://themagicnetwork.com/magic-forum/36-close-up-walk-around-parties-kids/5803-improv-shows#5975</link>
            <description>i always have a deck on me. so there is at least 15 to 20min of stuff right there. Powerball 60 is also always with me and is such a strong effect. ill even do 'disjointed' if the situation is right. i could do a whole bit with just a deck of cards. if i remember to grab them on the way out, UltraGaff and a few effects from True Astonishments as well.</description>
            <pubDate>Fri, 20 Aug 2010 09:49:15 -0400</pubDate>
        </item>
        <item>
            <title>Subject: LMFAO! ROTF! - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/72-off-topic/2378-lmfao-rotf#5960</link>
            <description>Yeah, I seriously think that kid should find a new hobby too, and like Dave said, have his video camera taken away!</description>
            <pubDate>Thu, 19 Aug 2010 08:37:47 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Faviorite way to steal a card? - by: andrewjspeirs</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/5938-faviorite-way-to-steal-a-card#5953</link>
            <description>I don't do a lot of palming, but if i do, it's usually from the bottom. 

I really like to side steal from the pack, usually into a lateral or tenkai palm.

For multiple cards, i use the gamblers cop. A personal favorite.</description>
            <pubDate>Wed, 18 Aug 2010 09:19:18 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Books? - by: V Marra</title>
            <link>http://themagicnetwork.com/magic-forum/43-general-mentalism-discussion/5940-books#5952</link>
            <description>No problem Tom!

Here are some links for you for the ebooks and books that you probably won't find in a brick and mortar store:

The Safwan Papers:
http://www.outlaw-effects.com/store/index.php?option=com_content&amp;view=article&amp;id=28&amp;Itemid=33

Paul Vigil ebooks (the first three books in the search results here):
http://www.imentalism.com/component/search/paul%20vigil/?ordering=&amp;searchphrase=all

A Card Merely Thought of...
http://thoughtcontrol.ca/A_Card_Merely_Thought_Of/

Mitox:
http://mitox.phillsmiff.com/

Also, check out Paul Brook. His &quot;Juxtapose&quot; effect is very good, it is a parlour type of mentalism effect involving two spectators.  It is sold as an ebook on his website:
http://www.paulbrook.co.uk/heknows/juxtapose.htm</description>
            <pubDate>Wed, 18 Aug 2010 08:32:39 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Gecko: Worth the Money? - by: PatrickGregoire</title>
            <link>http://themagicnetwork.com/magic-forum/25-other-gimmicks/321-gecko-worth-the-money?limit=15&amp;start=30#5951</link>
            <description>I have decided, with Jim's permission, to sell the original webcam video (quality is more than good enough) on my website as a download. The length of the video is 24 minutes of constant teaching. It contains techniques, a few effects (which are included to illustrate different techniques), subtleties, tips, etc. I will be selling it for $12 USD. My primary purpose for selling this video is to correctly teach people how to use the Gecko. The video is available for purchase at http://www.pgmagicproductions.synthasite.com . Click on the PRODUCTS tab and at the bottom of the page is a big gecko picture. Click on it and it'll bring you to the Gecko Training Video page. While you're there, check out some of my other products  ;) 
The Gadget Manuscript has gotten some great feedback from the likes of Alan Rorrison and Jamie Daws.</description>
            <pubDate>Wed, 18 Aug 2010 01:57:39 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Card revelations? - by: WilliamsB</title>
            <link>http://themagicnetwork.com/magic-forum/17-cards-and-card-effects/4725-card-revelations?limit=15&amp;start=15#5937</link>
            <description>I honestly like performing Believe by Joel Paschall and Card to Bottle.

of course, I also have many of my own reveals that i LOVE performing! Especially Match'd and Ink'd.</description>
            <pubDate>Mon, 16 Aug 2010 16:41:03 -0400</pubDate>
        </item>
        <item>
            <title>Subject: &quot;Real magic&quot; - by: andrewjspeirs</title>
            <link>http://themagicnetwork.com/magic-forum/46-patter-and-presentation/5862-qreal-magicq#5935</link>
            <description>Sounds really good. 

I know someone who does this kind of thing, works really well for him. Fits his personality. So try it out see if it fits your style. 

Good luck.</description>
            <pubDate>Mon, 16 Aug 2010 10:51:41 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Tombadil is in the house :-) - by: Tombadil</title>
            <link>http://themagicnetwork.com/magic-forum/2-take-the-stage/5897-tombadil-is-in-the-house--#5933</link>
            <description>I'll do my best ;)</description>
            <pubDate>Sun, 15 Aug 2010 03:22:42 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Favorite coin vanish? - by: MillionaireMike</title>
            <link>http://themagicnetwork.com/magic-forum/18-moneycoin-effects/5705-favorite-coin-vanish#5931</link>
            <description>Ahh you got audio! It looks very cool, only reason I didn't buy it was again to me its too much like coins across... a coin jumps from one place to another invisibly... Although audio looks cool :) I may still get it one day just for the sleights... well of coarse I'd use the epic routine as well :)</description>
            <pubDate>Sat, 14 Aug 2010 17:48:33 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Q&amp;A video - by: TheMystifyer</title>
            <link>http://themagicnetwork.com/magic-forum/73-show-your-stuff/5775-qaa-video?limit=15&amp;start=15#5928</link>
            <description>OK so as my blog indicates...I have set the official release date for my first Q&amp;A video.  Sept 1st!  Well actually that is the Pre-Release date, but I want all of you to be able to see the Pre-Released Version. I will set up the video on YouTube but only accessible from the link in the news letter. I will release it to the public at a later date which I will announce at the Sept 4th Live event.(BTW That's not what the Big announcement is.)

I'm already collecting video questions for my next Q&amp;A videos They will be Pre-released in future Mystifyer Monthly Newsletters and will be released to the public on dates after the pre-release. Sign up for your free account and newsletter at www.JustinTheMystifyer.com to get access to Pre-Released videos and other cool stuff.</description>
            <pubDate>Sat, 14 Aug 2010 11:57:02 -0400</pubDate>
        </item>
        <item>
            <title>Subject: What gets you in the magic mood? - by: Laura_Smale-Eisele</title>
            <link>http://themagicnetwork.com/magic-forum/40-other-magic-discussions/5885-what-gets-you-in-the-magic-mood#5918</link>
            <description>Seeing a pic earlier of my hero james &quot;amazing&quot; randi! I did a college paper over a decade ago on alpha &amp; steve &quot;banachek&quot; shaw. It was a complete mind altering study for me!</description>
            <pubDate>Fri, 13 Aug 2010 22:41:46 -0400</pubDate>
        </item>
        <item>
            <title>Subject: Kid Parties and tricks for the Youngins - by: Laura_Smale-Eisele</title>
            <link>http://themagicnetwork.com/magic-forum/13-getting-started-resources-effects-advice/2856-kid-parties-and-tricks-for-the-youngins#5917</link>
            <description>I recently taught dustin a few easy mentalism effect simply based on voice inflection &amp; he went into the room &amp; fooled all the adults on the 1st tries!</description>
            <pubDate>Fri, 13 Aug 2010 15:52:21 -0400</pubDate>
        </item>
    </channel>
</rss>
