// JavaScript Document

function addLoadListener(fn)
{
	if(typeof window.addEventListener != 'undefined')
	{
		window.addEventListener('load',fn,false);
	}
	else if (typeof document.addEventListener != 'undefined')
	{
		document.addEventListener('load',fnn, false);
	}
	else if (typeof window.attachEvent != 'undefined')
	{
		window.attachEvent('onload', fn);
	}
	else
	{
		var oldfn = window.onload;
		if(typeof window.onload != 'function')
		{
			window.onload = fn;
		}
		else
		{
			window.onload = function()
			{
				oldfn();
				fn();
			};
		}
	}
}

addLoadListener(function() { RC();});

function RC()
{
	if(document.getElementById('Form1'))
	{
		if(document.getElementById('Form1').getAttribute('action') == 'home.aspx')
		{
			var email = readCookie('email');
			if(!email)
				email = '';
			if(document.getElementById('postuserid'))
			{
				document.getElementById('postuserid').setAttribute("value",email);
			}
		}
	}
}
