<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2 -50;
if (screen.height < 768){ wint = 0; }
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

var expDays = 365;
var exp = new Date(); 
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));

function getCookieVal (offset) {  
var endstr = document.cookie.indexOf (";", offset);  
if (endstr == -1)    
endstr = document.cookie.length;  
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {  
var arg = name + "=";  
var alen = arg.length;  
var clen = document.cookie.length;  
var i = 0;  
while (i < clen) {    
var j = i + alen;    
if (document.cookie.substring(i, j) == arg)      
return getCookieVal (j);    
i = document.cookie.indexOf(" ", i) + 1;    
if (i == 0) break;   
}  
return null;
}
function SetCookie (name, value) {  
var argv = SetCookie.arguments;  
var argc = SetCookie.arguments.length;  
var expires = (argc > 2) ? argv[2] : null;  
var path = (argc > 3) ? argv[3] : null;  
var domain = (argc > 4) ? argv[4] : null;  
var secure = (argc > 5) ? argv[5] : false;  
document.cookie = name + "=" + escape (value) + 
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 
((path == null) ? "" : ("; path=" + path)) +  
((domain == null) ? "" : ("; domain=" + domain)) +    
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {  
var exp = new Date();  
exp.setTime (exp.getTime() - 1);  
var cval = GetCookie (name);  
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}

function checkpopup(w,h) {
var prefer = GetCookie('popup');
if (prefer != 'off') NewWindow('seeyou.htm','name',w,h,'no');
}

function gstname() {
if (document.form.name.value != "") SetCookie('gname', document.form.name.value, exp);

}

function checkFields(s) {
missinginfo = "";
if (document.form.name.value == "") {
missinginfo += "\n     -  Name (Required)";
}
if ((document.form.email.value != "") && 
((document.form.email.value.indexOf('@') == -1) || 
(document.form.email.value.indexOf('.') == -1))) {
missinginfo += "\n     -  E-mail address (Not Valid)";
}
if ((document.form.url.value != "") && 
((document.form.url.value.indexOf('http://') == -1) || 
(document.form.url.value.indexOf('.') == -1))) {
missinginfo += "\n     -  Homepage URL (Not Valid) [Include http://]";
}
if(document.form.message.value == "") {
missinginfo += "\n     -  Comments (Required)";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to correctly fill in your:\n" +
missinginfo + "\n_____________________________" +
"\nPlease re-enter and submit again!";
alert(missinginfo);
return false;
}
else {
s.value = " Signing Guestbook";
s.disabled = true;
return true;}
}
//  End -->