//<!-[CDATA[


//	document.write(" " + difference + " Days ");

      
function timeoutput()			{
	var todaysdate = new Date();

	var day = todaysdate.getDate();
	var year = todaysdate.getFullYear(); 
	var month = todaysdate.getMonth() + 1; 
	var Fullmonth = "January";
		if (month > 1)		{
		Fullmonth = "February";
					}
		if (month > 2)		{
		Fullmonth = "March";
					}
		if (month > 3)		{
		Fullmonth = "April";
					}
		if (month > 4)		{
		Fullmonth = "May";
					}
		if (month > 5)		{
		Fullmonth = "June";
					}
		if (month > 6)		{
		Fullmonth = "July";
					}
		if (month > 7)		{
		Fullmonth = "August";
					}
		if (month > 8)		{
		Fullmonth = "September";
					}
		if (month > 9)		{
		Fullmonth = "October";
					}
		if (month > 10)		{
		Fullmonth = "November";
					}
		if (month > 11)		{
		Fullmonth = "December";
					}


	var showdate = Fullmonth + " " + day + ", " + year; 


	var meredian = " AM"; 
	var hours = todaysdate.getHours(); 
		if (hours > 11)		{
		meredian = " PM";
					}
		if (hours > 12)		{
		hours = hours - 12;
					}
		if (hours < 10)		{
		hours = "0" + hours;
					}

	var minutes = todaysdate.getMinutes(); 
		if (minutes < 10)	{
		minutes = "0" + minutes;
					}
	var boxfill = showdate + " " + hours + ":" + minutes + meredian;

        var txtOutput = document.getElementById("txtOutput");
        txtOutput.value = " " + boxfill; 

				        } // end timeoutput 




//	]]>

