if(isset($_GET['url'])) {
$link = $_GET['url'];
else { $link = "http://www10.zippyshare.com/view.jsp?locale=lt&key=83278616";}
$content = file_get_contents($link);
$prefix = explode(".com", $link);
$prefix = $prefix[0].".com";
$url = explode('var a =', $content);
$url = explode('</script>', $url['1']);
$url = str_replace("document.getElementById('dlbutton').href", "var g", $url['0']);
$url = str_replace('"', '\'', $url);
echo '<script>
var a =';
echo $url;
echo '</script>';
echo '<script>
var t = "'.$prefix.'" + g;
window.open(t);
</script>';