
	// Set the clock's font face:
	var myfont_face = "Verdana";
	// Set the clock's font size (in point):
	var myfont_size = "8";
	// Set the clock's font color:
	var myfont_color = "#102544";
	// Set the clock's background color:
	var myback_color = "";
	// Set the text to display before the clock:
	var mypre_text = "";
	// Set the width of the clock (in pixels):
	var mywidth = 80;
	// Display the time in 24 or 12 hour time?
	// 0 = 24, 1 = 12
	var my12_hour = 1;
	// How often do you want the clock updated?
	// 0 = Never, 1 = Every Second, 2 = Every Minute
	// If you pick 0 or 2, the seconds will not be displayed
	var myupdate = 1;
	// Display the date?
	// 0 = No, 1 = Yes
	var DisplayDate =1;

/////////////// END CONFIGURATION /////////////////////////
///////////////////////////////////////////////////////////

// Browser detect code
        var ie4=document.all
        var ns4=document.layers
        var ns6=document.getElementById&&!document.all
// Global varibale definitions:
	var dn = "";
	var mn = "th";
	var old = "";

// This array controls how often the clock is updated,
// based on your selection in the configuration.
	var ClockUpdate = new Array(3);
		ClockUpdate[0] = 0;
		ClockUpdate[1] = 1000;
		ClockUpdate[2] = 60000;

