function viewBacknumber(op){
	var n = document.forms[0].elements[0].selectedIndex;
	var num = document.forms[0].elements[0].options[n].value;
	if(num){
		parent.window.location = '../' + (num == 'index' ? '' : num + '/');
	}
}
