//<!-[CDATA[


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


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

	var month = todaysdate.getMonth() + 1; 
	var day = todaysdate.getDate();
	var year = todaysdate.getFullYear(); 
	var shortyear = year - 2000;
	var datecombine = month + "/" + day + "/" + shortyear; 

	document.write(datecombine);
					}


      
function timeoutput()			{
	var todaysdate = new Date();
	var spacer = ":";
	var hours = todaysdate.getHours(); 
	var minutes = todaysdate.getMinutes(); 
		if (minutes < 10)	{
		minutes = "0" + minutes;
					}
	var seconds = todaysdate.getSeconds(); 
		if (seconds < 10)	{
		seconds = "0" + seconds;
					}
	var boxfill = hours + spacer + minutes + spacer + seconds;

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

				        } // end timeoutput 




//	]]>

