 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Vaso Blast Ingredients</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

<!--[if lt IE 7.]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript" src="fancybox/jquery.easing-1.3.pack.js"></script>
<link rel="stylesheet" href="fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
<script type="text/javascript">
$(document).ready(function() {
	$("a.popup").fancybox({
		'hideOnContentClick': false,
		'padding'			: 10,
		'overlayOpacity'	: '.8',
		'overlayColor'		: '#999',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'speedIn'			: '450',
		'speedOut'			: '200',
		'type'				: 'iframe',
		'titlePosition'		: 'over'
	});
	
});
</script>
<script>
  dataLayer = [{
    'dyna-ga-acct': 'UA-50601119-5'
  }];
</script>
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-5Z9C3Z"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5Z9C3Z');</script>
<!-- End Google Tag Manager --> 
<div id = "master_container">
	<div id = "bumper">
	<div id = "header">
     	<img src="images/incredible-formula.gif" width="950" height="29" alt = "It's The Incredible Formula Our Competitors Don't Want You To Know About! Made in the USA" class = "spider">
        <ul class = "navigation">
        	<li><a href = "index.html"><img src="images/navigation/home.gif" width="93" height="33" alt="Home"></a></li>
         	<li><a href = "vaso-blast-frequently-asked-questions.html"><img src="images/navigation/faq.gif" width="83" height="33" alt="Frequently Asked Questions"></a></li>
            <li><a href = "vaso-blast-success-stories.html"><img src="images/navigation/success-stories.gif" width="199" height="33" alt="Success Stories"></a></li>
         	<li><a href = "vaso-blast-science.html"><img src="images/navigation/science.gif" width="113" height="33" alt="Science"></a></li>
            <li><a href = "vaso-blast-ingredients.html"><img src="images/navigation/ingredients.gif" width="155" height="33" alt="Ingredients"></a></li>
            <li><img src="images/navigation/contact.gif" width="120" height="33" alt="Contact"></li>
         	<li><a href = "order-gate.html"><img src="images/navigation/order-now.gif" width="149" height="33" alt="Order Now"></a></li>
         </ul>
     </div>
      <div class = "sub_head">
   	  <a href = "order-gate.html"><img src="images/head-order-now.png" width="132" height="39" alt="Order Now" class = "head_order"></a>
      </div>
     <div id = "body">
     	<div class = "left_container">
     	<h1 class = "company_title">Company Background</h1>
        <p class = "contact_text">Leading physicians and medical experts worldwide have discovered the unprecedented size enhancing/erection boosting effects of what has been called " the most effective male augmentation compound available!" Vaso Blast is a revolutionary new approach to increasing the size of the male anatomy that has literally astounded the medical community with a level of effectiveness that is truly unsurpassed in the field. This sophisticated new technology was designed based on the latest scientific research into the mechanisms of vasodilation and capillary expansion, and has yielded what many experts consider to be the most remarkable results every seen in the natural male enhancement field!</p>
                <img src="images/contact-doctor.jpg" width="129" height="126" alt="Doctor" class = "md">
                <div class = "hundred">
 <?php
function spamcheck($field)
  {
  //filter_var() sanitizes the e-mail
  //address using FILTER_SANITIZE_EMAIL
  $field=filter_var($field, FILTER_SANITIZE_EMAIL);

  //filter_var() validates the e-mail
  //address using FILTER_VALIDATE_EMAIL
  if(filter_var($field, FILTER_VALIDATE_EMAIL))
    {
    return TRUE;
    }
  else
    {
    return FALSE;
    }
  }

if (isset($_REQUEST['email']))
  {//if "email" is filled out, proceed

  //check if the email address is invalid
  $mailcheck = spamcheck($_REQUEST['email']);
  if ($mailcheck==FALSE)
    {
    echo "<p><font color='red'>Message not sent. Please fill out all fields correctly.</font></p>";
    }
  else
    {//send email
	$name = $_REQUEST['name'];
	$email = $_REQUEST['email'];
    $subject = $_REQUEST['subject'];
	$message = stripslashes($_REQUEST['message']);
		
       if($subject=="Billing Question" || $subject=="Additional Payment Methods")
	   {
	   //mail("support@vaso-blast.com", $subject, "Name:\n".$name."\n\nMessage:\n".$message, "From: $email" );
	   //start mandrill code 8-21-14 QG
		$uri = 'https://mandrillapp.com/api/1.0/messages/send.json';
		$jsonarraymail = array("key" => "0-u1Uodo9PP40Nmd-5678w",
			"message" => array("text" => $message,
				"subject" => $subject,
				"from_email" => $email,
				"from_name" => $name,
				"to" => array(array("email" => "support@vaso-blast.com","Name" => "Vaso Blast Support")),
				"headers" => array("Reply-To" => $email),
				"track_opens" => false,
				"track_clicks" => false,
				"auto_text" => true,
				"url_strip_qs" => true,
				"preserve_recipients" => true,
				"merge" => false,
				"tags" => array("Vaso Blast Support"),
				"google_analytics_domains" => "",
				"google_analytics_campaign" => ""
				),
				"async" => true
			);
		$postString = json_encode($jsonarraymail);
		$ch = curl_init();
		curl_setopt($ch, CURLOPT_URL, $uri);
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
		curl_setopt($ch, CURLOPT_POST, true);
		curl_setopt($ch, CURLOPT_POSTFIELDS, $postString);

		$mail_status = curl_exec($ch);
		
        if ( $debug === true )
            echo 'Mail() Status: ' . $mail_status . '<br />';
	   }
	   else
	   {
  	
	      if($subject=="Track My Order")
	      {
	      $message = "Dear ".$_REQUEST['name'].",\n\nThank you for inquiring about tracking your package. All orders are shipped within 48 hours and delivery is based on location.\n\nUS ORDERS: Estiamted delivery time for US orders is anywhere from 3-10 business days once your package has been shipped.\n\nCANADA ORDERS: Estiamted delivery time for orders from Canada is anywhere from 7-14 business days (depending on customs) once your package has been shipped.\n\nINTERNATIONAL ORDERS: Estiamted delivery time for international orders is anywhere from 14-21 business days (depending on customs) once your package has been shipped.\n\nOccasionally a package may take longer to be delivered.\n\nIf if has taken longer than the estimated delivery time for you receive your package, please contact our Customer Service Department directly, toll-free at 1-800-798-8452. Customer service is available Monday - Friday from 10AM to 5PM Pacific Standard Time.\n\nOnce again, thank you for contacting us regarding this issue.\n\n--\nVaso Blast Customer Service\nA Division of Cytozyte Technologies\n1-800-798-8452\n\nYour Message:\n\n".$_REQUEST['message']."\n";
	      }
	      elseif($subject=="General Product Question")
	      {
	      $message = "Dear ".$_REQUEST['name'].",\n\nThank you for inquiring about Vaso Blast.\n\nWHAT IS VASO BLAST?\nVaso Blast is the world's most advanced male augmentation catalyst. It has been scientifically engineered to dramatically enhance the size of a mans penis, using our proprietary rapid expansion technology and one-of-a-kind formula\n\nHOW DOES VASO BLAST WORK?\nVaso Blast addresses the task of making your penis bigger, with a series of targeted technologies that allow for more of the active ingredients to reach the key target zones of your anatomy. Unlike other products that just attempt to bring more blood flow to the penis and to open up the two erectile tissue chambers in your penis, Vaso Blast goes way beyond this simple and outdated concept.\nVaso Blast addresses developing a bigger penis from the pharmacological aspect with our proprietary and proven compound in pharmaceutical dosages. Our compounds are also processed using a new technique from China called \"Super Critical Extraction\", which allows the active ingredient of a compound to be significantly more potent than conventional cold compressing. The results are dramatically improved. This enhanced technology along with our superior formula work as a tandem to target the key trigger zones of your penis that are most receptive to enhancement. By focusing on these key areas where the greatest potential for changes exists, allow for a significantly bigger penis to be made possible.\n\nVASO BLAST USES PHARMACEUTICAL-GRADE INGREDIENTS, BUT WHAT DOES THAT MEAN?\nThere are basically three different grades of raw materials used in supplements they are:\n\n- Pharmaceutical Grade - meets pharmaceutical standards\n- Food Grade - meets standards set for human consumption\n - Feed Grade - meets standards set for animal consumption\n\nThe difference between each grade type is one of quality and purity. Technically, no substance is 100% pure, for there are always fillers added to various products. The difference between the grades is one of how much of these other fillers are present in the product.\n\nThere are several criteria by which pharmaceutical grade are judged. The product must be in excess of 99% purity with no binders, fillers, excipients, dyes, or unknown substances. Pharmaceutical grade is the Rolls Royce standard of supplement. It costs more to use such high-grade compounds, but the differences in the results you receive are dramatic. Using pharmaceutical grade compounds, costs more, but it is one of the reasons Vaso Blast is so effective.\n\nARE THERE ANY NEGATIVE SIDE EFFECTS?\nAbsolutely zero. A positive side-effect is that, in addition to being significantly bigger, you'll be more sensitive, enjoying intercourse more and your confidence will be at an all time high.\n\nWHAT CAN VASO BLAST DO FOR MY CONFIDENCE?\nVaso Blast was designed with one purpose only – to help a man make his penis bigger. This was our mission, and we are happy to report we have been successful. Now additionally, there are other benefits that have been reported like increased pleasure and desire. The greatest benefit of Vaso Blast, other than the obvious pleasure of being much bigger, is the confidence it gives men. No matter if your 21 years old or 71 years old, the number one thing men say about Vaso Blast, is howgreat they feel about themselves and how they can't wait to go to bed with a lover, especially a new lover, knowing that when it comes time for them to take out their penis, that their lover is always delighted, and very often a little shocked at how big their penis is. It's a great confidence booster to have a giant penis.\n\nWHAT ARE THE INGREDIENTS OF VASO BLAST?\nVaso Blast was designed with two \"main\" components to our formula. One important part of the ingredient list is L-Arginine AKG, which takes up one component. There is no \"cleaner\" or better source of Nitric Oxide production than pharmaceutical grade L-Arginine AKG. No erectile boosting benefits are possible without Nitric Oxide. We use the best source, perfectly measured. The \"second component\" of the formula is our exclusive, and 100% propriety \"Vasobolic\" blend. No other company in the world has this formula, and it cannot be reverse engineered! The \"Vasobolic\" blend is made up of Piper Longum (aka \"Long Pepper\"), Butea Superba (we have the exclusive rights to use this product which was awarded a United States Patent--that's \"awarded\" NOT \"Patent Pending\" which only means you have an application submitted to the Patent Office. 95% of all nutraceutical patents are rejected. Our patent was granted. Patent Number 6,673,377). It also contains several type of DHEA, as they provide separate and distinct elements to the formula. They are DHEA Acetate, DHEA Cypionate, and DHEA Decanoate. We also use Bulgarina Tribulus Terrestris, Yohimbe, Cnidium Monnier, and Eurycome Longifolia (aka \"Long Jack\").\n\nHOW BIG CAN I REALLY GET?\nDepending upon your age and the current condition of your penis determines how much bigger you can get. It is difficult to give an exact number. But we can say with 100% certainty that you will get bigger - no question. The only variable is how much bigger. Some men report a 35% change, while other only notice a 10% change. Regardless, of how much bigger you get, there is no other supplement that you can take, that will make you bigger. After taking Vaso Blast the size of your penis is the biggest it's ever going to be, without going under the knife for surgery. Don't worry; you will get bigger with Vaso Blast.\n\nHOW DO I TAKE VASO BLAST?\nSimply take 2 easy to swallow capsules every day.\n\nWHAT IF I MISS A DAY OR TWO?\nMissing a day or two will not make a dramatic difference. If you've forgotten to take Vaso Blast for a day or two, just start again at the regular daily dose. Remember, though, that you will not achieve optimal benefits if you take Vaso Blast sporadically, you should take it daily.\n\nHOW LONG WILL IT TAKE BEFORE I SEE RESULTS?\nMost men report initial results in only three to four weeks. You may see results even sooner, or it may take a bit longer for your body to adjust. The great news is, that with our proprietary one-of-a-kind formula and our Rapid Expansion Technology; you will see results – guaranteed.\n\nIS VASO BLAST A DRUG?\nVaso Blast is not a drug. It is a daily natural nutritional supplement that does not require a prescription, despite the fact that we use pharmaceutical grade compounds in the Vaso Blast formula.\n\nIf you still have questions about Vaso Blast, please contact our Customer Service Department directly, toll-free at 1-800-798-8452. Customer service is available Monday - Friday from 10AM to 5PM Pacific Standard Time.\n\nOnce again, thank you for contacting us regarding this issue.\n\n--\nVaso Blast Customer Service\nA Division of Cytozyte Technologies\n1-800-798-8452\n\nYour Message:\n\n".$_REQUEST['message']."\n";
	      }
	      elseif($subject == "Billing Question")
	      {
	      $message = "Dear ".$_REQUEST['name'].",\n\nThank you for inquiring about billing for your order.\n\nFor all billing inquiries, please contact our Customer Service Department directly, toll-free at 1-800-798-8452. Customer service is available Monday - Friday from 10AM to 5PM Pacific Standard Time.\n\nOnce again, thank you for contacting us regarding this issue.\n\n--\nVaso Blast Customer Service\nA Division of Cytozyte Technologies\n1-800-798-8452\n\nYour Message:\n\n".$_REQUEST['message']."\n";
	      }
		  elseif($subject == "Change of Address")
	      {
	      $message = "Dear ".$_REQUEST['name'].",\n\nThank you for inquiring about changing your shipping address.\n\nTo change your shipping address, please immediately contact our Customer Service Department directly, toll-free at 1-800-798-8452. Customer service is available Monday - Friday from 10AM to 5PM Pacific Standard Time.\n\nOnce again, thank you for contacting us regarding this issue.\n\n--\nVaso Blast Customer Service\nA Division of Cytozyte Technologies\n1-800-798-8452\n\nYour Message:\n\n".$_REQUEST['message']."\n";
	      }
	      elseif($subject == "Returns and Refunds")
	      {
	      $message = "Dear ".$_REQUEST['name'].",\n\nThank you for inquiring about a return and/or refund.\n\nFor all return and/or refund inquiries, please contact our Customer Service Department directly, toll-free at 1-800-798-8452. Customer service is available Monday - Friday from 10AM to 5PM Pacific Standard Time.\n\nOnce again, thank you for contacting us regarding this issue.\n\n--\nVaso Blast Customer Service\nA Division of Cytozyte Technologies\n1-800-798-8452\n\nYour Message:\n\n".$_REQUEST['message']."\n";
		  }
	      //mail($email, "Vaso Blast: $subject",$message, "From: no-reply@vaso-blast.com" );
		  		  //start mandrill code 8-21-14 QG
		$uri = 'https://mandrillapp.com/api/1.0/messages/send.json';
		$jsonarraymail = array("key" => "0-u1Uodo9PP40Nmd-5678w",
			"message" => array("text" => $message,
				"subject" => "Vaso Blast: ".$subject,
				"from_email" => "no-reply@vaso-blast.com",
				"from_name" => "Vaso Blast Support",
				"to" => array(array("email" => $email,"Name" => $name)),
				"headers" => array("Reply-To" => "no-reply@vaso-blast.com"),
				"track_opens" => false,
				"track_clicks" => false,
				"auto_text" => true,
				"url_strip_qs" => true,
				"preserve_recipients" => true,
				"merge" => false,
				"tags" => array("Vaso Blast Support"),
				"google_analytics_domains" => "",
				"google_analytics_campaign" => ""
				),
				"async" => true
			);
		$postString = json_encode($jsonarraymail);
		$ch = curl_init();
		curl_setopt($ch, CURLOPT_URL, $uri);
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
		curl_setopt($ch, CURLOPT_POST, true);
		curl_setopt($ch, CURLOPT_POSTFIELDS, $postString);

		$mail_status = curl_exec($ch);
		
        if ( $debug === true )
            echo 'Mail() Status: ' . $mail_status . '<br />';
	   }
		
    echo "<p><font color='red'>Your message has been sent!</font></p><p>Please check your Spam/Junk folder if you do not see the message in your inbox.</p>";
    }
  }
else
  {//if "email" is not filled out, display the form
  echo "<p>Please fill out the following contact form. <font color='red'><strong>All fields are required.</strong></font></p>";
  echo "<form method='post' action=''>
  <strong>Full Name:</strong><br /> <input class='field' name='name' type='text' /><br />
  <strong>Email:</strong><br /> <input class='field' name='email' type='text' /><br />
  <strong>Reason for E-Mailing:</strong><br /> <select name='subject'>
  <option value='Choose a Subject'>Please Choose a Subject Matter:</option>
  <option value='---'>--------------------</option>
  <option value='Track My Order'>Track My Order (United States)</option>
  <option value='Track My Order'>Track My Order (International)</option>
  <option value='Additional Payment Methods'>Additional Payment Methods</option>
  <option value='Billing Question'>Billing Question</option>
  <option value='Change of Address'>Change of Address</option>
  <option value='Returns and Refunds'>Returns and Refunds</option>
  <option value='General Product Question'>General Product Question</option>
  </select><br />
  Message:<br />
  <textarea name='message' rows='15' cols='40'></textarea><br />
  <input class='submit' type='submit' />
  </form>";
  }
?>

          
        </div>
        </div>
		<ul class = "ad_container">
        	<li><a href = "order-gate.html"><img src="images/one-month-clear.png" width="301" height="476" alt="One Month Supply"></a></li>
	        <li><a href = "order-gate.html"><img src="images/three-month-clear.png" width="301" height="394" alt="Three Month Supply"></a></li>
	        <li><a href = "order-gate.html"><img src="images/seven-month-clear.png" width="301" height="430" alt="Seven Month Supply"></a></li>
    	</ul>
	 <div class = "shadow"></div>	
     <div class = "foot_background">
     	<ul class = "foot_nav">
        	<li><a href = "index.html"><img src="images/foot_nav/home.gif" width="61" height="16" alt="Home"></a></li>
            <li><img src="images/foot_nav/faq.gif" width="55" height="16" alt="Frequently Asked Questions"></li>
            <li><a href = "vaso-blast-success-stories.html"><img src="images/foot_nav/success_stories.gif" width="136" height="16" alt="Success Stories"></a></li>
            <li><a href = "vaso-blast-science.html"><img src="images/foot_nav/science.gif" width="73" height="16" alt="Science"></a></li>
            <li><a href = "vaso-blast-ingredients.html"><img src="images/foot_nav/ingredients.gif" width="105" height="16" alt="Ingredients"></a></li>
            <li><a href = "contact.php"><img src="images/foot_nav/contact.gif" width="78" height="16" alt="Contact"></a></li>
            <li><a href = "order-gate.html"><img src="images/foot_nav/order-now.gif" width="110" height="16" alt="Order Now"></a></li>
        </ul>
        <ul class = "terms">
        	<li><a href = "terms.html" class="popup">TERMS AND CONDITIONS</a></li>
            <li><a href = "privacy.html" class="popup">PRIVACY POLICY</a></li>
            <li><a href = "guarantee.html" class="popup">100% MONEY BACK GUARANTEE</a></li>
        </ul>
        <img src="images/foot_graphic.gif" width="476" height="36" alt="Foot Graphic" class = "fg"></div>
	 </div>
     <p class = "by_law">These statements have not been evaluated by the Food and Drug Administration and are for informational purposes only. They should not be considered medical advice. Always consult a doctor for medical advice. This product is not intended to diagnose, treat, cure, or prevent any disease. Vaso Blast is a registered trademark of Cytozyte Technologies, LLC.</p>

<p class = "by_law">Copyright © 2014 Cytozyte Technologies All rights reserved.</p>
     </div>
    </div>
<script type="text/javascript" id="la_x2s6df8d" src="//quantum-support.com/scripts/trackjs.php"></script>
<img src="//quantum-support.com/scripts/pix.gif" onLoad="LiveAgentTracker.createButton('button1', this);"/>
</body>
</html>
