<?
require_once 'includes/init.php';

if ($Path[1] <> "")
    {
    $fp = fsockopen ("127.0.0.1", 6546, $errno, $errstr, 30);
    if (!$fp) 
	{
	echo "$errstr ($errno)<br />\n";
	} 
    else 
	{
        fputs ($fp, "key ".$Path[1]."\nquit \n");
        fclose($fp);
        }
    }


require_once theme_dir.'/remote/key.php';
?>