// JavaScript Document
function page(v){
var url = window.location.pathname;
var s="";
if(url.indexOf('\\')!=-1){ s="\\";}else{s="/";}
var Docname =url.substring(url.lastIndexOf(s)+1);
//var path =url.substring(0,url.length-(Docname.length+2));
window.location.href="../"+v+"/"+Docname;
//alert(document.URL);
//alert(window.location.pathname);
}