Ok i have created this block but one problem...

Its not liking the format to open when you click on the picture.

Code:
 
    die();
}

$content = "<form action=\"openwindow(https://www.paypal.com/cgi-bin/webscr/)\" method=\"post\">";
$content = "<input type=\"hidden\" name=\"cmd\" value=\"_xclick\">";
$content = "<input type=\"hidden\" name=\"business\" value=\"[email protected]\">";
$content = "<input type=\"hidden\" name=\"item_name\" value=\"Chaotic-Clan Donations\">";
$content = "<input type=\"hidden\" name=\"item_number\" value=\"0001\">"; is
$content = "<input type=\"hidden\" name=\"amount\" value=\"10.00\">";
$content = "<input type=\"hidden\" name=\"no_note\" value=\"1\">";
$content = "<input type=\"hidden\" name=\"currency_code\" value=\"USD\">";
$content = "<center><input type=\"image\" src=\"images/donate.gif\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it's fast, free and secure!\">";
I have also tryled it this way:

Code:
$content = "<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">";
the problem with this way is that web dont reconize backslashes..

whats the best way to resolve this?