function goBack(frameid) {
//alert(frameid);
//alert(top.content.frames[frameid].history.previous);
//	top.content.frames[frameid].history.back();
//	window.history.back();
//	window.history.go(-1);
//	window.history.back();
// history.go(-1); // no
//window.history.back();
//	top.content.frames[frameid].history.previous;
//alert("hi");
//history.back();
//document.history.go(-1);
//alert(top.content.frames[frameid].window.history.length);
//alert(history.length);
history.back(); //(-1);
}
function refresh(frameid) {
//	top.content.frames[frameid].history.back();
	window.location.reload(true);
}
function goForward(frameid) {
//	window.history.go(1);
//	top.content.frames[frameid].history.forward();
//	window.history.forward();
}
