document.oncontextmenu = function() { return false }
function SaveUN(obj) {

Set_Cookie('username',obj, '', '/', '', '' );

}
function SavePass(obj) {

Set_Cookie('password',obj, '', '/', '', '' );

}
function delcookie (obj) {
Delete_Cookie('username', '/', '');
Delete_Cookie('password', '/', '');
}

function upinfo(obj) {
	if (Get_Cookie('username')!=null && Get_Cookie('password')!=null)
	{
	usn=Get_Cookie('username');
	pwd=Get_Cookie('password');
	document.getElementById('infoframe').src="http://www.foradvisorsonly.com/unlog.cgi?un="+usn+"&pw="+pwd;
	delcookie('');
	}
}
