Predict changes in your earnings depending on Impressions, Click Rate and Cost Per Click.
|
How do I use this tool? [+/-] |
|
1. Enter the amount of Daily Impressions. 2. Enter a percentage amount of Click Through Rate. 3. Enter the Cost Per Click in dollars. 4. Click “Calculate” button. The results will be shown below.
|
|
||||||||||||
function validate(theform) {
if (theform.imp.value == “”) { alert(“No Impressions Provided”); return false; }
if (theform.prate.value == “”) { alert(“No Click Through Rate Provided”); return false; }
if (theform.cost.value == “”) { alert(“No Cost Per Click Provided”); return false; }
return true;
}