function k4() {
f=document.getElementsByTagName("form");
s='Sorry, this FreeWebs account is still provisional and forms are not permitted.  \nFreeWebs accounts are provisional for the first 7 days.';
for(var i=0;i<f.length;i++) {
f[i].action="javascript:alert(s);";
f[i].onsubmit=function() {
alert(s);
return false;
};
}
}

function fw_i() {
var np=0;
var al=-1;
var prov=0;

if(p.readyState==4) {
if(p.status==200) {
if (p.responseText.indexOf("Not Found")<0){
eval(p.responseText);
if(np==1 && al==2) {
window.status='This site is hosted for free at FreeWebs.com.';
}
if (prov==1){
window.setInterval("k4()",1000);
k4();
}
}
}
}
}

function loadText() {
var a,b;
if (navigator.userAgent.indexOf('MSIE 5.0')>0) return;
if (navigator.userAgent.indexOf('MSIE 4.0')>0) return;
if (document.getElementById){
eval("try { p = new XMLHttpRequest();} catch (e) {  p = new ActiveXObject('Msxml2.XMLHTTP');}  try { netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserRead'); } catch (e) { }");
}
if (p==null) return;
if(document.all) {
p.open("GET",'.i',true);
p.onreadystatechange = fw_i;
p.send(null);
} else {
p.open("GET",'.i',true);
p.onreadystatechange = fw_i;
p.send(null);
}
}
loadText();

