route add -net 212.176.1.1/32 37.202.1.1
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>demo</title>
<script type="text/javascript" src="http://yandex.st/jquery/1.9.1/jquery.min.js"> </script>
<script type="text/javascript">
function demo(){
$("input").click();
return false;
}
</script>
<style type="text/css">
a {
margin: 200px;
display: block;
}
input {
display: none;
}
</style>
</head>
<body>
<input type="file" />
<br />
<a href="#" onclick="return demo();">123</a>
<br />
<a href="#" onclick="$('input').click(); return false">456</a>
</body>
</html>