function vx0() {
ecw_ax('gast_ax.asp?w=0','pan1');
}
function vx1(f) {
var n = f.n.value;
var t = f.t.value;
var e = f.e.value;
var h = f.h.value;
var o = f.o.value;
if (n=='') {
alert('Please enter your name');
f.n.focus();
}
else if (n.length>60) {
alert('The name is too long (max. 60 characters)');
f.n.focus();
}
else if (t=='') {
alert('Please enter a comment');
f.t.focus();
}
else if (t.length>500) {
alert('Your comment is too long (max. 500 characters)');
f.t.focus();
}
else {
if (window.confirm('Click on OK to save your entry now:'))
ecw_ax('gast_ax.asp?w=add&n='+escape(n)+'&t='+escape(t)+'&e='+escape(e)+'&h='+escape(h)+'&o='+o,'pan1');
}
return false;
}

