//my functions made from the scripts without said functions

// Date/time scripts
	function showDate() {
		var now = new Date();
    var days = new Array(
      'Sun.','Mon.','Tues.',
      'Wed.','Thurs.','Fri.','Sat.');
    var months = new Array(
      'Jan.','Feb.','Mar,','Apr.','May',
      'June','July','Aug.','Sept.','Oct.',
      'Nov.','Dec.');
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    function fourdigits(number)	{
      return (number < 1000) ? number + 1900 : number;}
    today =  days[now.getDay()] + " " +
       months[now.getMonth()] + " " +
       date + ", " +
       (fourdigits(now.getYear()));
     document.write(today);
	}

<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var timerID = null;
var timerRunning = false;
function stopclock (){
        if(timerRunning)
                clearTimeout(timerID);
        timerRunning = false;
}

function startclock () {
        stopclock();
        showtime();
}

function showTime () {
        var now = new Date();
        var hours = now.getHours();
        var minutes = now.getMinutes();
        var seconds = now.getSeconds()
        var timeValue = "" + ((hours >12) ? hours -12 :hours)
        timeValue += ((minutes < 10) ? ":0" : ":") + minutes
        //timeValue += ((seconds < 10) ? ":0" : ":") + seconds
        timeValue += (hours >= 12) ? " PM" : " AM"
        document.getElementById('time').innerHTML=timeValue;
        timerID = setTimeout("showTime()",1000);
        timerRunning = true;
}
//-->