function gup( name ){  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  var regexS = "[\\?&]"+name+"=([^&#]*)";  var regex = new RegExp( regexS );  var results = regex.exec( window.location.href );  if( results == null )    return "default";  else    return results[1];}	

var test_string = gup ( 'testy' );

	
if (document.referrer.indexOf('yahoo.com') != -1 ||
document.referrer.indexOf('google.com') != -1 ||
document.referrer.indexOf('msn.com') != -1 || 
test_string == "1" )

{

var passed_string = gup( 'paragraph' ); 

} else var passed_string = "default";

switch (passed_string){
case "new": 
document.write('<p><em>Send right from your Outbox</em><br />Send personalized, 1 to 1 email marketing campaigns and newsletters to hundreds or thousands of recipients, using your existing distribution lists, or a mailing list you import!</p><p><em>Create simple text or professional HTML emails</em><br />Use regular Outlook text email, or choose from hundreds of PoliteMail templates which you can edit right inside Outlook, or import your own HTML.</p><p><em>Measure Results Instantly</em><br />Know who is opening your messages and clicking your links! PoliteMail\'s email metrics and auto-segmentation features help your measure your email and improve your communication performance over time.</p>');
break;
default : document.write('<p><em>Send right from your Outbox</em><br />Send personalized, 1 to 1 email marketing campaigns and newsletters to hundreds or thousands of recipients, using your existing distribution lists, or a mailing list you import!</p><p><em>Create simple text or professional HTML emails</em><br />Use regular Outlook text email, or choose from hundreds of PoliteMail templates which you can edit right inside Outlook, or import your own HTML.</p><p><em>Measure Results Instantly</em><br />Know who is opening your messages and clicking your links! PoliteMail\'s email metrics and auto-segmentation features help your measure your email and improve your communication performance over time.</p>');
}
