<html>
<head>
<script lang="javascript">
var state = location.hash.match(/state=([^&]*)/);
var token = location.hash.match(/token=([^&]*)/);
if ( state ) {
window.opener.__JSONP_CALLBACKS__[state[1]](token ? token[1] : '');
}
</script>
</head>
<body>
</body>
</html>