
function CharlNow() {
	var win = window.open("http://myweb.cableone.net/padraic/charl/","WhereIsCharl","width=600,height=500,scrollbars=yes,menubar=no,location=no,directories=no,status=no,resizable=yes")
	win.focus()
}

function signGuestbook() {
	var doc = document.theForm
	if (doc.person_name.value == "" && doc.person_location.value == "" && doc.person_message.value == "") {
		alert("Please enter your information")
	}	else	{
		doc.submit()
	}
}

