<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Ben Gleib News</title>
<link href="styles-site.css" rel="stylesheet" type="text/css" />
<script src="http://www.gleib.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>
<div id="wrapper">
<div id="holder">
<div id="header"><div id="header">
  <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','830','height','266','src','FlashBanner','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','bgcolor','#F4EED6','movie','FlashBanner' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="830" height="266">
    <param name="movie" value="FlashBanner.swf" />
    <param name="quality" value="high" /><param name="BGCOLOR" value="#F4EED6" />
    <embed src="FlashBanner.swf" width="830" height="266" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#F4EED6"></embed>
  </object>
</noscript></div>
</div>
<div id="navigation"><ul>

 <li><a href="#">Home</a></li>
 <li><a href="http://www.gleib.com/vgallery">Videos</a></li>
 <li><a href="http://www.gleib.com/writing">Writing</a></li>
 <li><a href="http://www.gleib.com/bio">Bio</a></li>
 <li><a href="http://www.gleib.com/gallery">Photos</a></li>
 <li><a href="http://www.gleib.com/calendar">Calendar</a></li>
 <li><a href="#">Gleib Store</a></li>
 <li><a href="http://www.gleib.com/contactus">Contact Us</a></li>
 
</ul>
</div>
<div id="bar"><img src="http://www.gleib.com/images/crossbar.jpg" width="830" height="3" /></div>
<div id="rtsidebar">
<div id="form-wrapper">


  <form action="javascript:subscribe();" method="post" name="frmSS" onsubmit="return CheckSS()">

	<table align="center" cellpadding="0"  cellspacing="0">
	  <tr>
		<td height="20" bgcolor="#183A79" align="center">
	    <p>Your Email Address</p>		</td>
	  </tr>
	  <tr>
		<td bgcolor="#2E4676" valign="top" align="center">
			<p>
			  <input type="text" name="Email" value="" />
			</p>	   </td>
	  </tr><input type="hidden" name="SelectLists[1]" value="YES"/>
<input type="hidden" name="FormCode" value="f10468c782e8c608249b8ae521340282"/>
<input type="hidden" name="Format" value="2"/>
			  <tr>
				<td bgcolor="#2F4775" valign="top" align="center"><input type="submit" value="Subscribe" /></td>
			  </tr>
		</table>
</form>
</div>

			<script language="JavaScript">

				// check multi checkboxes based on the name passed in.
				function CheckMultiple(name) 
				{
					theFrm = document.frmSS;
					for (var i=0; i < theFrm.length; i++) 
					{
						fldObj = theFrm.elements[i];
						var fieldnamecheck=fldObj.name.indexOf(name);
						if (fieldnamecheck != -1) {
							if (fldObj.checked) {
								return true;
							}
						}
					}
					return false;
				}


				function CheckSS()
				{
					theFrm = document.frmSS;

					hasDot = theFrm.Email.value.indexOf(".");
					hasAt = theFrm.Email.value.indexOf("@");
					
					if (hasDot == -1 || hasAt == -1)
					{
						alert("Please enter a valid email address.");
						theFrm.Email.focus();
						theFrm.Email.select();
						return false;
					}

					
					return true;
				}


			function subscribe(){
				strSubmit=formData2QueryString(document.frmSS);
				//update this line accordningly 
				//e.g.http://www.gleib.com/newsletter/users/form.php?FormID=1
				xmlhttpGet('/newsletter/users/form.php?FormID=1',strSubmit,'callback','form-wrapper');
			}				
			function callback(response,id){
				div=document.getElementById(id);
				div.innerHTML='<p align="center">Thank You!</p>';
			}
			function formData2QueryString(docForm) {
			
			
			
			  var submitContent = '';
			
			  var formElem;
			
			  var lastElemName = '';
			
			
			
			  for (i = 0; i < docForm.elements.length; i++) {
			
			
			
			    formElem = docForm.elements[i];
			
			    if(formElem.disabled) continue;
			    switch (formElem.type) {
			
			      // Text fields, hidden form elements
			
			      case 'text':
			
			      case 'hidden':
			
			      case 'password':
			
			      case 'textarea':
			
			      case 'submit':
			      case 'select-one':
			
			        submitContent += formElem.name + '=' + escape(formElem.value) + '&'
			
			        break;
			
			
			
			      // Radio buttons
			
			      case 'radio':
			
			        if (formElem.checked) {
			
			          submitContent += formElem.name + '=' + escape(formElem.value) + '&'
			
			        }
			
			        break;
			
			
			
			      // Checkboxes
			
			      case 'checkbox':
			
			        if (formElem.checked) {
			
			          // Continuing multiple, same-name checkboxes
			
			          if (formElem.name == lastElemName) {
			
			            // Strip of end ampersand if there is one
			
			            if (submitContent.lastIndexOf('&') == submitContent.length-1) {
			
			              submitContent = submitContent.substr(0, submitContent.length - 1);
			
			            }
			
			            // Append value as comma-delimited string
			
			            submitContent += ',' + escape(formElem.value);
			
			          }
			
			          else {
			
			            submitContent += formElem.name + '=' + escape(formElem.value);
			
			          }
			
			          submitContent += '&';
			
			          lastElemName = formElem.name;
			
			        }
			
			        break;
			
			
			
			    }
			
			  }
			
			  // Remove trailing separator
			
			  submitContent = submitContent.substr(0, submitContent.length - 1);
			
			  return submitContent;
			
			}
			
				var responseText;
				        
				function xmlhttpGet(strURL, strSubmit, strResultFunc,id) {
				
				        var xmlHttpReq = false;
				        // IE
				        if (window.ActiveXObject) {
				                xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
				        }
				        // Mozilla/Safari
				        else if (window.XMLHttpRequest) {
				                xmlHttpReq = new XMLHttpRequest();
				                xmlHttpReq.overrideMimeType('text/xml');
				        }
				        xmlHttpReq.open('POST', strURL, true);
				        xmlHttpReq.setRequestHeader('Content-Type',
						     'application/x-www-form-urlencoded');
				        xmlHttpReq.onreadystatechange = function() {
				                if (xmlHttpReq.readyState == 4) {
				                	//performing our things
				                	responseText=xmlHttpReq.responseText;
				                	eval(strResultFunc+"(responseText,'"+id+"')")
				 
				                 }
				
				        }
				        xmlHttpReq.send(strSubmit);
				}




			</script>
  <p>&nbsp;</p>
  <p><a href="http://www.myspace.com/gleib" target="_blank"><img src="http://www.gleib.com/images/ad_myspace.jpg" width="170" height="100" border="0" /></a></p>
  <p><a href="http://www.nbc.com/The_Real_Wedding_Crashers/" target="_blank"><img src="http://www.gleib.com/images/ad_weddingcrashers.jpg" width="170" height="100" border="0" /></a></p>
  <p><a href="http://www.gopotato.tv/melvinz.php" target="_blank"><img src="http://www.gleib.com/images/melvinbros.jpg" width="170" height="100" border="0" /></a></p>
  <ul id="link_list">
				<li><a href="http://www.collegehumor.com" target="_blank">Collegehumor.com</a></li>
				<li><a href="http://www.comedyjuice.com" target="_blank">Comedyjuice.com</a></li>
				<li><a href="http://www.improv.com" target="_blank">Improv.com</a></li>
				<li><a href="http://www.gopotato.tv" target="_blank">Gopotato.tv</a></li>
				<li><a href="http://www.nbc.com" target="_blank">Nbc.com</a></li>
			    <li><a href="http://www.scotrichardson.com" target="_blank">Scotrichardson.com</a></li>
  </ul>
</div>
<div id="content">
<div id="titlebar"><img src="http://www.gleib.com/images/hometitlebar.jpg" width="477" height="37" /></div>

        <p>Thank you for logging onto the <strong>Official site for Ben Gleib Global</strong>, a corporation that cares about things.  I am the first comedian in history to turn himself into a major corporation.  And it feels powerful!  It's kinda like being a super hero!  (Without having to save anybody!)</p>

<p>Many thanks to <img src="http://www.eventica.co.uk/events/polo/2007/summer/logo/l-esquire.gif"> for calling me one of <strong>"6 COMICS WHO COULD BE COMEDY'S NEXT BIG THING."</strong>  <em>(I think this may be because I've been a long-time subscriber to the magazine.)</em>  Along with the incredibly talented Demetri Martin, Patton Oswalt, Flight of the Conchords, Aziz Ansari, and one of my favorites of all time, David Cross.  I am quite honored to have been mentioned in that company.  <br><a href="http://www.esquire.com/the-side/opinion/comedians070207" target=_"blank">Click here to read the story, and watch clips on ESQUIRE.COM</a><br><br />
<FONT SIZE=3>In "When can you see me on TV next?" news,<br> I&rsquo;ll be appearing again on<br> <img src="http://upload.wikimedia.org/wikipedia/en/b/bc/Chelsea_lately_screenshot.JPG"><strong></strong><b><br>TUESDAY, MAY 6 at 11:30pm.</b><strong><br>  <em>It will also repeat throughout the week</em></strong><br><br><br />
</font><br />
<FONT SIZE=4>***<i>NEW VIDEO!!!!</i>***<br><br />
OFFICER POOLEY, CAMPUS SECURITY <br>Hidden Camera<br><br />
<object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="355" width="425" data="http://www.youtube.com/v/aQcE9q9pakM&hl=en"><br />
  <param name="allowScriptAccess" value="never" /><br />
  <param name="allowNetworking" value="internal" /><br />
  <param name="movie" value="http://www.youtube.com/v/aQcE9q9pakM&hl=en" /><br />
</object><br><br />
Also, my show <br><img alt="TRWC%20logo.jpg" src="http://www.gleib.com/TRWC%20logo.jpg" width="350" height="113" /><br> is airing right now on <br>STYLE NETWORK, TUESDAYS AT 9PM & MIDNIGHT <br>(and all week randomly)<br><br />
<br></p>

<p>This is a recent stand up set I did on <strong><em>COMEDY JUICE night at the HOLLYWOOD IMPROV</em></strong>  <br />
For some reason I'm wearing a cowboy hat.  Part 2 can be found on youtube or the toggle that comes up at the end.<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/2N_nFV4x72Y&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/2N_nFV4x72Y&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>

<p>Here is a news piece I did recently on the Writer's Strike.  <em>(I use the word news very lightly.)</em><br />
It was just featured on myspace so I figured I should also feature it on my own website.<br />
<a href="http://myspacetv.com/index.cfm?fuseaction=vids.individual&videoid=23413585">Solving The Writers Strike</a><br><embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="m=23413585&v=2&type=video" type="application/x-shockwave-flash" width="430" height="346"></embed><br><a href="http://myspacetv.com/index.cfm?fuseaction=vids.addToProfileConfirm&videoid=23413585&title=Solving The Writers Strike">Add to My Profile</a> | <a href="http://myspacetv.com/index.cfm?fuseaction=vids.home">More Videos</a></p>

<p>A dope internet startup called <a href="http://docstoc.com">docstoc.com</a> launched big this year.<br />
I was asked to make 10 weird commercials for them playing different characters.  Here is one.  The others will come up on the toggle at the end, or can be found on youtube.<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Ta0z0SbIJLk&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Ta0z0SbIJLk&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>

<p>Thank you for visiting Ben Gleib Global.  Check out the rest of the site!  There's plenty more!  <br />
We are committed to increasing our profits at all costs.</p>

<p><br />
Ben Gleib<br />
CEO, Ben Gleib Global<br />
<em>(and Comedian)</em></p>
  

 </div>
 <div class="brclear"></div>
</div>
<div id="footer">
	<div>
	<span id="footer_left">
			<a href="http://www.gleib.com/secretpage" target="_blank">Secret Page</a> </span>
		<span id="footer_right"> &copy;2007 Flip the Script, LLC. All Rights Reserved </span></div>
</div></div>
</body>
</html>