You better think twice about illegally downloading those computer games in Britain.  The British computer game industry is going after suspected pirates by asking them to pay £300 for their illegal software.  In the near future, 25,000 people in Britain will receive a letter to empty their wallets or face an appointment with authorities.

Led by top software publishers and developers, this crackdown on piracy will hope to quell any hemorrhaging for an industry that accumulates £2 billion in sales per year.

A hard nosed approach to illegal downloads marks a dramatic shift by our friends across the Atlantic.  In fact, a similar approach in America has been going on for years.

Will similar measures happen in North America on a wider scale?  Hmm…In due time, we’ll find out!

Source: The Guardian

# Determine the current base URL
if(!isset($_SERVER['REQUEST_URI'])) {
$psps_base_url = $_SERVER['PHP_SELF'];
if (isset($HTTP_SERVER_VARS['QUERY_STRING'])) { $psps_base_url .= $HTTP_SERVER_VARS['QUERY_STRING']; }
} else {
$psps_base_url = $_SERVER['REQUEST_URI'];
}

$psps_parameters = '';

foreach ($_REQUEST as $key => $value) {
if (strpos($key,”psps_”) > -1 ) {
$psps_parameters .= ‘&’.$key.’=’.urlencode($value);
$psps_base_url = str_replace(‘&’.$key.’=’.urlencode($value), “”, $psps_base_url);
$psps_base_url = str_replace($key.’=’.urlencode($value), “”, $psps_base_url);
}
}

$psps_parameters .= “&psps_show_search=true”;
$psps_parameters .= “&psps_show_navigation=true”;
$psps_parameters .= “&psps_show_products=true”;

$psps_url = “?psps_base_url=”.urlencode($psps_base_url);

$psps_url=”http://shops.popshops.com/shops/php/6d5l28fo3i00km8cktsfmtkis$psps_url$psps_parameters”;

# Include the shop
if (function_exists(‘curl_init’)) {
$shop=curl_init();
curl_setopt($shop,CURLOPT_URL,$psps_url);
curl_exec($shop);
curl_close($shop);
} else {
readfile($psps_url);
}
?>

Post to Twitter Post to Delicious Post to Digg Post to Facebook