function submitForm() {
	q = document.f1.q.value;
	//q = q.replace("/","%2f");
	q = q.replace(/\//g,"%2f");
	q = q.replace(/\./g,"");
	q = encodeURIComponent(q);
	document.f2.action = "/t/t/" + q + "/";
	document.f2.submit();
}

function submitMetaCafeForm() {
        q = document.f1.q.value;
        //q = q.replace("/","%2f");
        q = q.replace(/\//g,"%2f");
        q = q.replace(/\./g,"");
        q = encodeURIComponent(q);
        document.f2.action = "/m/t/t/" + q + "/";
        document.f2.submit();
}


