window.onload=function(){
	setFocus();
	copy();
	showT();
}
function slogan(n) {
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="203" height="187" />\n');
	document.write('<param name="movie" value="http://www.guestkrieger.com/slogan'+n+'.swf" />\n');
    document.write('<param name="quality" value="high" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<embed src="http://www.guestkrieger.com/slogan'+n+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="203" height="187" menu="false" />\n');
    document.write('</embed>\n');
	document.write('</object>\n');
}
//dateday
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sun","Mon","Tue","Wed","Thur","Fri","Sat")
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec")
//END

function copy() {
	document.getElementById('copyright').innerHTML = "&copy; " +year+ " Guest Krieger";
}//END

function showT(){
	if (!document.layers&&!document.all&&!document.getElementById){return;}
	var Digital=new Date()
	var hours=Digital.getHours()
	var minutes=Digital.getMinutes()
	var seconds=Digital.getSeconds()
	var dn="pm";
	if (hours<12) dn="am"
	if (hours>12) hours=hours-12
	if (hours==0) hours=12
	if (minutes<=9) minutes="0"+minutes
if (seconds<=9)	seconds="0"+seconds;
	myclock=hours+":"+minutes+":" +seconds+" "+dn;
	if (document.layers) {
		document.layers.liveclock.document.write(myclock);
		document.layers.liveclock.document.close();
	} else if (document.all) {
		liveclock.innerHTML=myclock;
	} else if (document.getElementById) {
		document.getElementById("time").innerHTML=myclock;
		setTimeout("showT()",1000);
	}
}
function setFocus(){
	if(document.getElementById('contact')){
		document.contact.name.focus();
	}
}
function formCheck() {
	if (document.contact.name.value == "") {
		alert("Please enter your name.")
		document.contact.name.focus()
		return;}
		valid = /^[^@]+@[^@]+.[a-z]{2,}$/i;
		stremail = document.contact.email.value;
	if (stremail.search(valid) == -1) {
		alert("Please enter a valid email address.")
		document.contact.email.focus()
		return;}
	if (document.contact.msg.value == "") {
		alert("Please enter your mesage.")
		document.contact.msg.focus()
		return;
	}
	document.contact.submit();
}
