// JavaScript Document

function printSales()
{
	var months=new Array(13);
	months[1]="January";	
	months[2]="February";
	months[3]="March";
	months[4]="April";
	months[5]="May";
	months[6]="June";
	months[7]="July";
	months[8]="August";
	months[9]="September";
	months[10]="October";
	months[11]="November";
	months[12]="December";
	var days=new Array(7);
	days[0]="Sunday";
	days[1]="Monday";
	days[2]="Tuesday";
	days[3]="Wednesday";
	days[4]="Thursday";
	days[5]="Friday";
	days[6]="Saturday";
	
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	var dayOfWeek=time.getDay();
	var dayOfWeekStr=days[dayOfWeek];
	if (year<1000) year= 1900 + year;
	else year=time.getYear();
	
	//document.write('<font color = "#BC0B63" > <strong>On ' + dayOfWeekStr + ", " + lmonth + " ");
	//document.write(date + ", " + year + ' our Resume Builder is 20% off! <p>Also includes, for FREE, the exclusive eBook <a href="successful-job-seeker.html">&quot;The Successful Job-Seeker&quot;</a>! </strong></font>');
	
	// Promoción de 29.95
	document.write('<strong> <font size="+2" color="#FF0000"><u>Only $29.99!</u></font></strong><p>');
	document.write('<font color = "#BC0B63" > <strong>On ' + dayOfWeekStr + ", " + lmonth + " ");
	document.write(date + ", " + year + ' our Resume Builder is 40% off! <p>Also includes, for FREE, the exclusive eBook <a href="successful-job-seeker.html">&quot;The Successful Job-Seeker&quot;</a>! </strong></font>');

	// Promoción 29.95 carnaval
	//document.write('<strong> <font size="+2" color="#FF0000"><u>Only $29.99!</u></font></strong><p>');
	//document.write('<font color = "#BC0B63" > <strong> ');
	
	//document.write('From now until February 28th, 2007, we will be celebrating Carnivals.<p>');
	//document.write('Purchase our resume builder for <u>only $29.99</u> (40% discount over the regular price: $49.95)!');

	//document.write('</strong></font>');

	//Precio especial navidad
	//document.write('<strong> <font size="+2" color="#FF0000"><u>Only $19.99!</u></font></strong><p>');
	//document.write('<font color = "#BC0B63" > <strong> ');
	
	//document.write('Spring sale, from now until May 31, 2007!<p>');
	//document.write('Purchase our resume builder for <u>only $19.95</u> (50% discount over the regular price: $39.95)!');

	//document.write('</strong></font>');
	
	
	// Promoción 29.95 
	//document.write('<strong> <font size="+2" color="#FF0000"><u>Only $29.99!</u></font></strong><p>');
	//document.write('<font color = "#BC0B63" > <strong> ');
	
	//document.write('From now until April 30th, 2007, we will be on sale.<p>');
	//document.write('Purchase our resume builder for <u>only $29.99</u> (40% discount over the regular price: $49.95)!');

	//document.write('</strong></font>');

	 
}

