// JavaScript Document

var d=new Date();
var month=new Array(12);
var day = d.getDate();
var year = d.getFullYear();
var todaysDate;

month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

todaysDate = day + " " + month[d.getMonth()] + " " + year;

function displayemail()
{
	var one = "support";
	var two = "@";
	var three = "atomicwebhosting";
	var four = ".com";
	
	document.write('<a href="mailto:'+one+two+three+four+'"> support team by clicking here</a>');
}
function displaysalesemail()
{
	var one = "sales";
	var two = "@";
	var three = "atomicwebhosting";
	var four = ".com";
	
	document.write('<a href="mailto:'+one+two+three+four+'"> sales team </a>');
}