function windowOnload(){}

function findPath(){
var l = location.href
if(l.indexOf('?')!=-1){
l=l.substring(0,l.indexOf('?'))
}
if(l.indexOf('.asp')!=-1){
l=l.substring(0,l.indexOf('.asp'))
var splitlocation = l.split('/')
l = ''
for (i=0; i<splitlocation.length-1; i++){
l+=splitlocation[i]+'/'
  }
 }
return l
}

