DATAINTRITE.COM Internet promotions and development
Good Internet advertising promotions are combined with design and technology. Search engine optimisation webad design is the key to your internet advertising solution. We will save you endless amount of advertising budget dollars and give your promotions strong search engine ranking. Any advertising agency will tell you that search engine ranking is crucial for a successful internet advertising promotion campaign. For your website to be in the top twenty is a good position on most search engines and depending on your website design, will you benefit from being one of the websites in the search engine ranking top twenty. When taking up a search engine optimization strategy for your website from any internet advertising company always check the examples of work that is successful. Most importantly what is the internet advertising company prepared to do for you and your trust and money. If the online advertising firm offers to work for your company before you have to invest, you may be starting up a good relationship within an ethical internet advertising company.
This is a super-easy little script that you can use to form an automatic print-page link on your site. Just insert this script where you want the link to display and your visitors can choose to print the page they are viewing.
<a href='javascript:;' onClick='window.print();return false'>Print this page.</a>
This is an example. Print this page.
Add this short snippet to the body of your popup windows so that they can be closed easily.
<form>
<input type="button" value="Close Window" onClick="window.close()">
</form>
Use this script if you have a long page.
<a href="javascript:window.scrollTo(0,0);">Back to top of page</a>
Example Back to top of page
This script will add the date in the form dd month yyyy (eg. 7 January 2007). Just copy and paste it into the document where you want it to appear.
<script language="JavaScript">
<!--
function makeArray() {
for (i = 0; i<makeArray.arguments.length; i++)
this[i + 1] = makeArray.arguments[i];
}
var months = new makeArray('January','February','March','April','May','June', 'July','August','September','October','November','December');
var date = new Date();
var day = date.getDate();
var month = date.getMonth() + 1;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
document.write(day + " " + months[month] + " " + year);
//-->
</script>
Example 28 February 2007