/*
============================================================================
PIRANHA FEED: Version 2.50

Copyright (C) 2002-2004, Answers 2000 Limited: http://www.scriptrocket.com/

***** WARNING ******

Redistribution or reverse engineering of any part of this product is
strictly forbidden. Removal or modification of this copyright notice and
warning is also strictly forbidden. This product may only be used on the
authorized user's web site. For further information, including full Terms
and Conditions, please see the License Agreement.

Any violation of the above, or any of the Terms and Conditions specified in
the License Agreement, may result in severe civil and criminal penalties, and
will be prosecuted to the maximum extent possible law.
============================================================================
*/
function fixstr(strin)
{
        var kk = 1 ;
        for (var ii=0, strout='', valid="123456789abcdefghijklmnopqrstuvwxyz"; ii<strin.length; ii++)
        if (valid.indexOf(strin.charAt(ii)) != -1) { strout += strin.charAt(ii) ; kk = 0 ; }
        else { if ( kk == 0 ) { strout += '+' ; kk = 1 ; } }
        return strout;
}
var pftitle = document.title ;
pftitle = fixstr( pftitle.toLowerCase() ) ;
document.write('<SCR'+'IPT SRC="a2kpf_search.php?pfj=1&pfs='+pftitle+'"></SCR'+'IPT>' ) ;

