function FxLFx() {
if(self.location.search.length > 0) {
	var vxlen = self.location.search.length;
	var vxurl = self.location.search.substring(1,vxlen);
	if (document.images)
		self.frmmain.location.replace(vxurl);
	else
		self.frmmain.location.href = (vxurl); 
}
}

function FxLFy() {
if(document.images)
top.location.replace("index.htm?" + self.location.href); 
else 
top.location.href = "index.htm?" + self.location.href;
}