function checkframed(gourl){

var s=self.location.pathname.substring(0,self.location.pathname.lastIndexOf('/'))+self.location.pathname.substring(self.location.pathname.lastIndexOf('/')+0, self.location.pathname.length)

if (top == self){

    var loc=self.location;
    var newURL = gourl+ '?'+s;
 top.location.href = newURL;
//window.open(newUrl);


}//endif
}//endfun

