
function top_navi_link_click(url) {
		move_chk_val = page_move_check();
		
		if (move_chk_val == 1) {
			parent.right.document.form1.submit();
		} else if (move_chk_val == 2) {
			parent.right.document.f.action = "./delete_cart.asp";
			parent.right.document.f.back_kbn.value = "-1";
			parent.right.document.f.back_file.value = url;
			parent.right.document.f.submit();
		} else {
			parent.location.href=url;
		}
}

