function RotateProductCopy() {
  var productCopy;
  var line1;
  var line2;
  var line3;
  var linkURL;
  var tracking;
  
  if (Math.random() < 0.5)
  {
  	line1 = "Flowcharts Made Easy";
  	line2 = "Create Flowcharts by Typing";
	line3 = "Free Download. 30 Day Trial.";
	linkURL = "www.BreezeTree.com";
	tracking = "onClick=\"pageTracker._trackEvent('ppc_emulator', 'version1', 'baseline');\";"
  }
  else
  {
  	line1 = "Flowchart in Excel";
  	line2 = "Text to Flowchart Generator";
  	line3 = "Free Trial. Just $59.95";
  	linkURL = "www.BreezeTree.com/Flowchart";
	tracking = "onClick=\"pageTracker._trackEvent('ppc_emulator', 'version2', 'baseline');\";"
  }

	productCopy =  "<span style='font-size: 12px; font-weight: bold;'>";
	productCopy +=   "<a style='text-decoration: none; color: #0089D9' href='/flowcharting-software/' " + tracking + ">";
	productCopy +=      line1;
	productCopy +=   "</a>";
	productCopy += "</span><br />";
	productCopy += "<span style='font-size: 10px;'>";
	productCopy +=   "<a style='text-decoration: none; color: #000' href='/flowcharting-software/' "  + tracking + ">"; 
	productCopy +=      line2 + "<br />";
	productCopy +=      line3;
	productCopy +=   "</a>";
	productCopy += "</span><br />";
	productCopy += "<span style='font-size: 10px;'>";
	productCopy +=   "<a style='text-decoration: none; color: #0A0 !important;' href='/flowcharting-software/' "  + tracking + ">";
	productCopy +=      linkURL;
	productCopy +=   "</a>";
	productCopy += "</span>";

  try
  {
  	document.getElementById('productCopy').innerHTML = productCopy;
  }
  catch(err)
  {
	// do nothing;
  }
  return true;
}

function RotatePPCCopy() {
  var ppcCopy;
  var line1;
  var line2;
  var line3;
  var linkURL;
  var tracking;
  
  if (Math.random() < 0.5)
  {
  	line1 = "Flowcharts Made Easy";
  	line2 = "Create Flowcharts by Typing";
	line3 = "Free Download. 30 Day Trial.";
	linkURL = "www.BreezeTree.com";
	tracking = "onClick=\"pageTracker._trackEvent('ppc_emulator', 'version1', 'baseline');\";"
  }
  else
  {
  	line1 = "Flowchart in Excel";
  	line2 = "Text to Flowchart Generator";
  	line3 = "Free Trial. Just $59.95";
  	linkURL = "www.BreezeTree.com/Flowchart";
	tracking = "onClick=\"pageTracker._trackEvent('ppc_emulator', 'version2', 'baseline');\";"
  }

	ppcCopy = "<div class='ppcEmulator'>";
	ppcCopy +=  "<span style='font-size: 12px; font-weight: bold;'>";
	ppcCopy +=   "<a style='text-decoration: none; color: #0089D9' href='/flowcharting-software/' " + tracking + ">";
	ppcCopy +=      line1;
	ppcCopy +=   "</a>";
	ppcCopy += "</span><br />";
	ppcCopy += "<span style='font-size: 10px;'>";
	ppcCopy +=   "<a style='text-decoration: none; color: #000' href='/flowcharting-software/' "  + tracking + ">"; 
	ppcCopy +=      line2 + "<br />";
	ppcCopy +=      line3;
	ppcCopy +=   "</a>";
	ppcCopy += "</span><br />";
	ppcCopy += "<span style='font-size: 10px;'>";
	ppcCopy +=   "<a style='text-decoration: none; color: #0A0 !important;' href='/flowcharting-software/' "  + tracking + ">";
	ppcCopy +=      linkURL;
	ppcCopy +=   "</a>";
	ppcCopy += "</span>";
	ppcCopy += "</div>";

	return ppcCopy;
}

function GoToInstructions() 
{
	setTimeout("window.location='/download-free-trials.htm'",3000);
	return true;
}

