!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml 1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Newgrounds Account: Make A News Post</title>
<script type="text/javascript" src="http://js.ngfiles.com/ng_publish.
js?1248148802"></script>
<!-- JS -->
<script type="text/javascript">
// <![CDATA[
// ==================== Code for handling the AJAX login box ========================
// We're embedding this here, rather than in a .js, because we need to guarantee it's loaded just below
var u_cookie = 'NG_GG_username';
var pm_count_cookie_name = 'unread_PMs';
var unread_pm_count = 0;
var page_is_dynamic = true;
var user_logged_in = true;
function ReturnCookie(this_name)
{
var parts = document.cookie.split(';');
var sub_parts;
for(var i=0; i<parts.length; i++) {
sub_parts = parts[i].split('=');
sub_parts[0] = sub_parts[0].replace(/\s/, '');
if(sub_parts[0] == this_name) {
return(unescape(sub_parts[1]));
}
}
// If we're here, we didn't find the cookie
return(null);
}
// Set cookies from JavaScript using this - swiped from http://www.dustindiaz.com/top-ten-java script/
function SetCookie(name, value, expires)
{
if(typeof expires == 'undefined') {
expires = 0;
}
var today = new Date();
today.setTime(today.getTime());
if(expires) {
expires = expires * 1000 * 60 * 60 * 24;