Você está na página 1de 55

<html>

<!-- Copyright 2008 Yahoo!, Inc. All rights reserved. -->


<head>
<meta http-equiv="Expires" content="Sat, 16 Nov 2002 00:00:01 GMT" />
<meta http-equiv="Content-type" content="text/html;charset=utf-8" />
<title>Yahoo! Mail</title>
<script type="text/javascript">
<!--
window.onerror = function(sMsg,sUrl,sLine)
{
var str, sLaunch = "bLaunch", e;
var urlExtras = window.gCgUrlExtras?('&'+window.gCgUrlExtras):'';
var brows="otherBrows",plat="otherPlat",ua =
navigator.userAgent.toLowerCase();
if (ua.indexOf('msie')!=-1){brows='ie';}
else if (ua.indexOf('safari')!=-1){brows='saf';}
else if (ua.indexOf('firefox')!= -1){brows='ff';}
if (ua.indexOf('mac')!=-1){plat='mac';}
else if (ua.indexOf('windows')!= -1){plat='win';}
str = ["ScriptError;ScriptError-",brows,"-",plat,"-",sLaunch,"-",urlExtras];

try { sendStat(str.join("")); } catch (e) { e = null; }

sMsg = sMsg + ", " + sLine + ", " + sUrl;

if (sMsg.indexOf("127.0.0.1") != -1) {
try {
sendStat("FoundEvilLocalScript");
} catch (e) { e = null; }
}

try {
str = stackTrace() || "";
} catch (e) {
e = null;
str = "";
}

if (!window.hasFoundErr) {
window.hasFoundErr = true;

try { _exit("launchFailure", sMsg, str); } catch (e) { e = null; }


}

return true;
}
//-->
</script>
<script type="text/javascript">
<!--

var LAUNCH_DATA_ERR_HANDLER, LAUNCH_ERR_MSG = "", gCgUrlExtras, gRegLaunch,


gLaunchProfile, gLaunchStartTime, gComponentMap = {}, activeX = {},
gDefaultTheme = {}, kPartner = {}, gLaunchSequenceCompleted = false,
gPostLaunchSequenceCompleted = false, gMyLocations,
launchText = "", lUserName = "", lLoggedInAs = "", lAction_cookie = "",
lLoginError = "", lIsDebug = "", lCookieError = "",
lLaunchPhpLoading = "", lEllipsisChar = "", ymsigy = "", ymsigq = "",
__gProfileTimeout__ = "", prefetchMessageSubject,
gCacheTestDiff = 0, gPprofp, bAlreadyAsked =false, failSafe_timerID = 0,
failSafe_bucket;

gLaunchStartTime = (new Date()).getTime();


failSafe_bucket =
{
min: 1000,
level_1: 2000,
level_2: 4000,
level_3: 8000,
level_4: 16000,
level_5: 30000,
max: 75000
}

function getCookie(name)
{
var dc, prefix, begin, end, ret, e;

try {
dc = document.cookie;
prefix = name + "=";
begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
} else {
begin += 2;
}
end = dc.indexOf(";", begin);
if (end == -1)
end = dc.length;

ret = unescape(dc.substring(begin + prefix.length, end));


} catch (e) {
ret = "";
e = null;
}
return ret;
}
function getQS()
{
var h, i, e, ret = "";
try {
h = location.search
i = h.indexOf( "?");
if (i != -1)
ret = h.substr(i+1);
} catch (e) {
ret = "";
e = null;
}
return ret;
}
function elt( idString )
{
var ret = null;
if (idString && typeof idString == "string")
ret = document.all[idString];;

return ret;
}
function deleteCookie(name, path, domain)
{
var buffer, cook, e;
try {
cook = getCookie(name);
if (cook) {
path = path || "";
path = String(path);
domain = domain || "";
domain = String(domain);
buffer = new Array();
buffer[0] = name;
buffer[1] = "=";
if (path)
buffer.push("; path=", path);

if (domain)
buffer.push("; domain=", domain);

buffer.push("; expires=Thu, 01-Jan-70 00:00:01 GMT");


document.cookie = buffer.join("");
}
} catch (e) { e = null; }
}
function setCookie(name, value, expires, path, domain, secure)
{
var buffer, e;

try {
name = name || "";
name = String(name);
value = String(value);
path = path || "";
path = String(path);
domain = domain || "";
domain = String(domain);
expires = (expires instanceof Date) ? expires : null;

buffer = [name, "=", escape(value)];


if (expires)
buffer.push("; expires=", expires.toGMTString());
if (path)
buffer.push("; path=", path);
if (domain)
buffer.push("; domain=", domain);
if (secure)
buffer.push("; secure");

document.cookie = buffer.join("");
} catch (e) { e = null; }
}
function parseLaunchJSON(dataID, parseErrMsg, domErrMsg)
{
var e, el, str;

el = elt(dataID);
str = (el) ? el.text : "";
if (el && str) {
str = str.replace(/^<\!--((\s|.)*?)\/\/-->$/gim, "$1");

try {
eval(str);
} catch (e) {
_exit("launchFailure", parseErrMsg + ", \n parsing value: " +
str + "\n" + getExceptionDetail(e));
e = null;
return;
}
} else {
_exit("launchFailure", domErrMsg);
}
}

function getFunctionName(aFunction, brief)


{
var name, fnStr, match, match2, len = 0;

try {
fnStr = aFunction.toString();
match = fnStr.match ( /function\s+([^\s(]+)/ );

if ( match && match.length > 1 ) {


name = match[1];
} else {
match = fnStr.match (/mungerCrumb = \"(\S+)\";/m );
match2 = null;

if ( match && match.length > 1 && ( match2 = fnStr.match (


/function\s*\([^\)]+\)/m ))) {
name = match2[0] + " { " + match[1] + " }";
} else {
len = Math.min ( fnStr.length, ( brief ? 35 : 100 ));
name = fnStr.substring ( 0, len-1 ) + "...}";

if ( brief )
name = name.replace ( /\n/g, " ");
}
}
} catch (e) { }

name = name || "{anonymous}";


name = name.replace(/^(\s+)?(.*\S)(\s+)?$/g, '$2');

return name;
}

function stackTrace(brief, err)


{
var result = [], i = 0, n = brief ? 10 : 20,
spacer = brief ? " " : "\n", args = arguments,
a, b, e;

if (err && (err instanceof Error) && err.stack)


return err.stack;

try {
a = args.caller ? args.caller.callee : args.callee.caller;

while ( a && i++<n )


{
result.push("> ", getFunctionName ( a, brief ), spacer);

args = a.arguments;
try {
b = args.caller ? args.caller.callee : args.callee.caller;
} catch ( e ) {
result.push( "*** error going to next level, may be the end of
the JS stack", spacer );
}

if ( b == a ) {
result.push("*** recursion, stopping", spacer);
break;
}

a = b;
}
} catch (e) {
result.push( "*** error generating stack crawl: " + e.message, spacer );
}

return result.join("");
}

function getExceptionDetail(e, sep)


{
var err;

if(!e) return "";

sep = sep || "\n";

return [
"name:", e.name||"", sep,
"message:", e.message||"", sep,
"number:", (e.number) ? (e.number & 0xFFFF) : "", sep,
"lineNumber:", e.lineNumber||"", sep,
"description:", e.description||"",sep,
"fileName:", e.fileName||"",sep
].join("");
}

function failSafe_stop()
{
try {
if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad failsafe timer stopped");
} catch (err) { e = null; }

if (failSafe_timerID) {
clearTimeout(failSafe_timerID);
failSafe_timerID = 0;
}
}

function failSafe_start(level)
{
var failSafeRun, nTime, err;

failSafe_stop();

level = level || "max";


nTime = (level in failSafe_bucket) ? failSafe_bucket[level] :
failSafe_bucket["max"];

failSafeRun = function()
{
var e, node, node2;
try {
node = Dom.elt("startCG") || null;
node2 = Dom.elt("launchDataCache") || Dom.elt("launchData") ||
null;
} catch (e) {
e = node = node2 = null;
}
if (node && node2) {
try {
onPageLoad(2);
} catch (e) {
_exit("launchFailure", "onPageLoad called, but failed in
failsafe timer, time:" + nTime + ", " + e.name + ":" + (e.message||e.description),
(e.stack||""));
return;
}
} else {
sendStat("FailSafeExpired_NoOnPageLoad:" + level);
failSafe_start(level);
}
}
try {
if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad failsafe timer is set to fire in
-->" + nTime);
} catch (err) { err = null; }

failSafe_timerID = setTimeout(failSafeRun, nTime);


}

LAUNCH_DATA_ERR_HANDLER =
{
onerror: function()
{
if (!LAUNCH_DATA_ERR_HANDLER.errCode) return false;

switch (LAUNCH_DATA_ERR_HANDLER.errCode)
{
case "LaunchNeverFinished":
failSafe_stop();
sendStat("CascadeErrorOnLaunch_LaunchNeverFinished;");
_exit("cascade", escape(LAUNCH_DATA_ERR_HANDLER.errCode));
break;
case "LaunchIsBlocked":
failSafe_stop();
sendStat("CascadeErrorOnLaunch_LaunchIsBlocked;");
_exit("blocked", escape(LAUNCH_DATA_ERR_HANDLER.errCode));
break;
case "Outage":
failSafe_stop();
sendStat("OutageOnLaunch");
_exit("outage", escape(LAUNCH_DATA_ERR_HANDLER.errCode));
break;
default:
failSafe_stop();
sendStat("CascadeErrorOnLaunch_Default;");
_exit("cascade", escape(LAUNCH_DATA_ERR_HANDLER.errCode),
null, LAUNCH_DATA_ERR_HANDLER.extraParam);
break;
}
return true;
},
errCode: "LaunchNeverFinished",
extraParam: ""
}

gCgUrlExtras = '&.gx=1';
redirectOnError = 1;
gRegLaunch = []; gLaunchProfile = {};

function sendStat(str)
{
var RS, url, e;

if (window.hasFoundEvil && str == "FoundEvilLocalScript")


return;

try {
if (window["DebugNoMunge"])
DebugNoMunge.log("Sending stat --> " + str);
} catch (e) { e = null; }
try {
RS = document.createElement("IMG");
RS.onload =
RS.onerror = function() { try { this.onerror = this.onload = null; }
catch (e) { e = null; } RS = null; };
url = "rs?log=" + str;
url = url + ((window.gCgUrlExtras) ? ("&" +
window.gCgUrlExtras) : "");
RS.src = url;
} catch (e) {
e = RS = null;
}
if (str == "FoundEvilLocalScript")
window.hasFoundEvil = true;
}

function getLogInfo()
{
var extraParamStr, scriptURLs = [], oEls, oEl, idx = 0, activeXMsg,
sMachine, sUserIntl, sUserLang, build, sADID, oSJS, failed, sJS, chSet,
doc = document, src, e, kPartnerData, loginVarData, sigData,
launchComplete = Boolean(window.gLaunchSequenceCompleted),
compMapData, themeMapData, ret = {};

ret.launchComplete = launchComplete;

try {
extraParamStr = extraParamStr || window.gCgUrlExtras || "";
} catch (e) {
extraParamStr = "";
e = null;
} finally {
ret.params = extraParamStr;
}
try {
oEls = doc.getElementsByTagName("script");
while (oEl = oEls[idx++])
{
src = oEl.getAttribute("src") || "";
if (src)
scriptURLs.push(escape(src));
}
} catch (e) {
e = null;
scriptURLs = [];
} finally {
scriptURLs = scriptURLs.join(";");
ret.scripts = scriptURLs;
}

try {
activeXMsg = activeX.message || ((activeX.nonActiveXDOMMode) ? "non
active x dom mode" : "");
} catch (e) {
activeXMsg = "";
e = null;
} finally {
ret.activeX = activeXMsg;
}
try {
sMachine = kPartner["systemHost"] || "unknown";
} catch (e) {
e = null;
sMachine = "unknown";
} finally {
ret.machine = sMachine;
}
try {
sUserIntl = kPartner.intl.user || "unknown";
} catch (e) {
e = null;
sUserIntl = "unknown";
} finally {
ret.userIntl = sUserIntl;
}
try {
sUserLang = kPartner.intl.lang || "unknown";
} catch (e) {
e = null;
sUserLang = "unknown";
} finally {
ret.userLang = sUserLang;
}
try {
build = kPartner.version.build || "unknown";
} catch (e) {
e = null;
build = "unknown";
} finally {
ret.build = build;
}
try {
sADID = kPartner['AdBeaconInfo']['AdID'] || "Unknown";
} catch (e) {
sADID = "Unknown";
e = null;
} finally {
ret.adID = sADID;
}
try {
oSJS =
failed = oSJS.getFailed();
sJS = ["\nScripts Failed:\n", (failed.length) ?
failed.join("\n") : 0].join("");
} catch (e) {
e = null;
sJS = "";
} finally {
ret.failedScripts = sJS;
}
try {
chSet = doc.charset || doc.characterSet || "unknown";
} catch (e) {
e = null;
chSet = "unknown";
} finally {
ret.charSet = chSet;
}
try {
loginVarData = elt("loginVars").text;
} catch (e) {
loginVarData = "unknown";
e = null;
} finally {
ret.loginVars = loginVarData;
}
try {
kPartnerData = elt("kPartnerData").text;
} catch (e) {
kPartnerData = "unknown";
e = null;
} finally {
ret.kPartner = kPartnerData;
}
try {
sigData = elt("sigData").text;
} catch (e) {
sigData = "unknown";
e = null;
} finally {
ret.sig = sigData;
}
try {
compMapData = elt("compMapData").text;
} catch (e) {
compMapData = "unknown";
e = null;
} finally {
ret.compMap = compMapData;
}
try {
themeMapData = elt("themeMapData").text;
} catch (e) {
themeMapData = "unknown";
e = null;
} finally {
ret.themes = themeMapData;
}

return ret;
}

function sendJSLog(sk,msg,stack)
{
var logInfo, logPct = 0, rand = 0, forceLog = 0, sURL,
oLogXHR, oParams, sent = false, e,

isDebug = false;

try {
if (location.search.indexOf("logJSErr=1") >= 0 || isDebug)
forceLog = 1;
} catch (e) {
forceLog = 0;
e = null;
}

logPct = 10;

rand = Math.random() * 100;


if ((rand < logPct) && !forceLog)
forceLog = 1;

sk = sk || "jsErrLog";
logInfo = getLogInfo();
if (msg.indexOf("127.0.0.1") >=0 || logInfo.scripts.indexOf("127.0.0.1") >=
0) {
if (!window.hasFoundEvil) {
forceLog = 1;
sendStat("FoundEvilLocalScript");
} else {
return;
}
}

if (sk == "sjsloaderfailure") {
rand = Math.random() * 1000;
forceLog = (rand < logPct) ? 1 : 0;
}

if (forceLog) {
sURL =
[
"jserr?prob=jsErrLog&",
"sk=", sk, "&",
"bn=", logInfo.build, "&",
"lc=", logInfo.launchComplete, "&",
"i=", logInfo.userIntl, "&",
"lg=", logInfo.userLang, "&",
"m=", escape(logInfo.machine), "&",
"c=", logInfo.charSet, "&",
"a=", escape(logInfo.adID), "&",
"x=", escape(logInfo.activeX), "&",
logInfo.params
].join("");

msg = msg || "";

if (window.LAUNCH_ERR_MSG) {
msg += "\n" + LAUNCH_ERR_MSG;
LAUNCH_ERR_MSG = "";
}

try {
oLogXHR = activeX._newHTTP();
oParams =
[
"msg=", escape(escape(msg)),
"&",
"stack=", escape(escape(stack)),
"&",
"surls=", escape(escape(logInfo.scripts)), "&",
"j=", escape(escape(logInfo.failedScripts)), "&",
"lvdata=", escape(escape(logInfo.loginVars)), "&",
"kpdata=", escape(escape(logInfo.kPartner)), "&",
"sigdata=", escape(escape(logInfo.sig)), "&",
"compdata=",escape(escape(logInfo.compMap)), "&",
"tdata=", escape(escape(logInfo.themes))
].join("");
try { oLogXHR.timeout = 10000; } catch (e) { e = null; }

oLogXHR.open("POST", sURL, true);


oLogXHR.setRequestHeader("Content-Type", "application/x-www-form-
urlencoded; charset=UTF-8");
oLogXHR.send(oParams);
sent = true;
} catch (e) {
e = null;
sent = false;
} finally {
oLogXHR = null;
}
sendStat("JSErrLog");
}
return sent;
}

function _noopFunc() {};

function _exit(reason, msg, stack, extraParamStr){


var sMethod = "POST", s = "setAttribute", c = "createElement", a =
"appendChild",
doc = document, loc = location, oFormEl, oDivEl, oInputEl, e,
qs = loc.search, newQs = (qs && qs.charAt(0) == "?") ? [qs, "&"] :
["?"],
oParams, logInfo, createLogNode,
sQsCheck="retry=1",sErrorStat="LaunchReloadError",isDebug = false;

createLogNode = function(name, data, form)


{
var oInputEl,err;

try {
oInputEl = doc.createElement("INPUT");
oInputEl[s]("type", "hidden");
oInputEl[s]("name", name);
oInputEl[s]("value", escape(data));
form.appendChild(oInputEl);
} catch (err) {
err = null;
}
form = oInputEl = null;
}

failSafe_stop();

switch (reason)
{
case "reload":
sendStat("ExitByReload");
loc.reload();
_exit = _noopFunc;
return true;
case "cascade":
sendStat("CascadeError_GenericMessage");
if (extraParamStr) {
loc.href = "cascade_err.php?ce=" + msg + "&" + extraParamStr;
} else {
loc.href = "cascade_err.php?ce=" + msg;
}
_exit = _noopFunc;
return true;
case "roughSeas":
sendStat("RedirectForRoughSeas");
loc.href = "/dc/system_requirements?" + extraParamStr;
_exit = _noopFunc;
return true;
case "outage":
window.location = LAUNCH_DATA_ERR_HANDLER.outageurl ;
return true;
break;
case "blocked":
sendStat("RedirectToBlockedURLPage");
loc.href= "/dc/pcactive";
_exit = _noopFunc;
return true;
case "cookie":
case "cookiesDisabled":
loc.href = 3dUUxCT1K42e7bwdS23u.79t.FKQ--&.done=http%3A%2F
%2Fus.mg4.mail.yahoo.com%2Fdc%2Flaunch%3F.gx%3D1%26amp%3B.rand%3Deh57knhs4hn0l";
_exit = _noopFunc;
return true;
case "galaxyJsFailure":
case "missingJS":
case "noactiveX":
case "QS":
case "cache":
break;
default:
reason = "launchFailure";
break;

}
if (isDebug && qs.indexOf(".debug=1") != -1 && !bAlreadyAsked) {
if (confirm("An error occured while launching in debug mode.\n Would
you like to debug?")) {
bAlreadyAsked = true;
eval("deb"+"ugger");
}
}

msg = msg || "unknown";


msg = reason + "\n" + msg;
logInfo = getLogInfo();

try {
if (msg.indexOf("Error loading script") != -1)
sendStat("FF_ErrorLoadingScript_" + (logInfo.launchComplete ? "a"
: "b"));
} catch (e) {
e = null;
}
if(window.redirectOnError == 0) return;
if(!isDebug){
if (qs.indexOf(sQsCheck) == -1){
if(window.kPartner){
sErrorStat=(kPartner.bucket ==
0)?"LaunchError_NoAds":"LaunchError_Ads";
}else{
sErrorStat="LaunchError_NoKPartnerFound";
}
sendJSLog("jsErrBeforeRetry",msg,stack);
sendStat(sErrorStat);
newQs.push(sQsCheck);
loc.replace("launch"+newQs.join(""));
_exit=_noopFunc;
return true;
}
sendStat(sErrorStat);
}

if (msg.indexOf("127.0.0.1") >=0 || logInfo.scripts.indexOf("127.0.0.1") >=


0)
sendStat("FoundEvilLocalScript");

if (window.LAUNCH_ERR_MSG) {
msg += "\n" + LAUNCH_ERR_MSG;
LAUNCH_ERR_MSG = "";
}

sUrl =
[
"troubleLoading?prob=", reason, "&",
"sk=", "launchFailure", "&",
"log=", "1", "&",
"bn=", logInfo.build, "&",
"lc=", logInfo.launchComplete, "&",
"i=", logInfo.userIntl, "&",
"lg=", logInfo.userLang, "&",
"m=", escape(logInfo.machine), "&",
"c=", logInfo.charSet, "&",
"a=", escape(logInfo.adID), "&",
"x=", escape(logInfo.activeX), "&",
logInfo.params
].join("");

try {
window.onunload = null;
oFormEl = doc[c]("FORM");
oFormEl[s]("id", "errForm");
oFormEl[s]("name", "errForm");
oFormEl[s]("action", sUrl);
oFormEl[s]("method", sMethod);
oFormEl[s]("hidefocus", true);
oFormEl[s]("tabIndex", -1);
oFormEl.style.cssText = "visiblity:hidden;display:none";

createLogNode("msg", msg, oFormEl);


createLogNode("stack", stack,
oFormEl);
createLogNode("j", logInfo.failedScripts, oFormEl);
createLogNode("surls", logInfo.scripts, oFormEl);
createLogNode("lvdata", logInfo.loginVars, oFormEl);
createLogNode("kpdata", logInfo.kPartner, oFormEl);
createLogNode("sigData" , logInfo.sig, oFormEl);
createLogNode("compdata", logInfo.compMap, oFormEl);
createLogNode("tdata", logInfo.themes, oFormEl);

oDivEl = doc[c]("div");
if (doc.body) {
oDivEl[a](oFormEl);
doc.body[a](oDivEl);
} else {
doc.getElementsByTagName("HEAD")[0][a](oFormEl);
}
oFormEl = elt('errForm');
sendStat("ErrorFormSubmitted");
oFormEl.submit();
} catch (e) {
sendStat("ErrorFormNotSubmitted");
e = oFormEl = null;
}
_exit = _noopFunc;

if (!oFormEl) {
sUrl += "&msg=" + msg.substring(0,1024);
loc.href = sUrl;
}
}

function _CD(action, evt)


{
var url, redirectObj, e;

try { if (window["DebugNoMunge"]) DebugNoMunge.showRawDebugLog(action, evt);


} catch(e) {e = null; }

if ( action != "exit" ) return;

try { deleteCookie( "YM.BM", "/", "yahoo.com" ); } catch(e) { e = null; }

url = "http://login.yahoo.com/config/login?
logout=1&.src=cdgm&.intl=us&.direct=2&.done=http://www.yahoo.com&.last=http://mail
.yahoo.com";
redirectObj = elt ("uh_soredirect");

try {
if (redirectObj && redirectObj.value.length)
url = redirectObj.value + url;
} catch (e) { e = null; }
if (url)
window.top.location.href = url;
}

function _H4O(event, srcElement) {}


function _MMOH(event, srcElement) {}

function Timer ()
{
this.start =
this.total = 0;
}
function Stopwatch (name)
{
this._name = name;
this._timers = {};
}
Stopwatch.prototype =
{
start: function(name) { this.startIfNeeded(name); },
startIfNeeded: function(name)
{
var t;

if (!name) return;

t = this._timers[name];
if(!t) t = new Timer();
if (t.start!=0) return;
t.start = ( new Date() ).getTime();
this._timers[ name ] = t;
},
stop: function(name) { this.stopIfNeeded(name); },
stopIfNeeded: function(name)
{
var t = this._timers[ name ];
if (!t || !t.start) return;
t.total += ( ( new Date() ).getTime() - t.start );
t.start = 0;
},
getTimer: function(name)
{
return this._timers[name] || null;
}
};

gLaunchProfile = new Stopwatch("LaunchProfile");


gLaunchProfile.start("PreOnload");
activeX =
{
enabled: true,
nonActiveXDOMMode: false,
xmldom: 'MSXML2.DOMDocument',
xmlhttp: 'MSXML2.XMLHTTP',
message: '',
_newDOM: function(bt) {
var ret = null, e1 = null, e2 = null;
try { ret = new ActiveXObject(activeX.xmldom); }
catch (e1) { e1 = ret = null; }
if (!ret) {
activeX.nonActiveXDOMMode = true;
try { sendStat("UsingNonActiveXMode;"); } catch (e1) { e1 =
null; };
try {
ret = document.createElement("XML");
ret = ret.XMLDocument;
} catch (e1) { ret = null; }
}
if (ret) {
ret.async =
ret.resolveExternals =
ret.validateOnParse = false;
ret.preserveWhiteSpace = true;
ret.setProperty("SelectionLanguage", "XPath");
}
if (!ret) { try { ret =
document.implementation.createDocument("", "", null); } catch (e2) { ret =
null; }; }
if (bt) {
if (ret) {
e1 = e2 = null;
msg = "";
}
return {err:e1||e2,msg:"xmldom:failure\n"};
}
return ret;
},
_newHTTP: function(bt) {
var ret = null, e;
try { ret = new XMLHttpRequest(); } catch (e) { e = ret = null; }
if (!ret) try { ret = new ActiveXObject(activeX.xmlhttp); } catch (e)
{ ret = null; }
return (bt) ? {err:e,msg:"xmlhttp:failure\n"} : ret;
}
}

activeX.failureReport = function( e, msg )


{
if (e) {
if (!isNaN(e.number)) { activeX.message += e.number + "\n"; };
activeX.message += msg + (e.message || e.description) + "\n";
activeX.enabled = false;
} else {
activeX.message = "";
activeX.enabled = true;
}
}

activeX.test = function(bBail)
{
var o;
o = activeX._newDOM(true);
activeX.failureReport(o.err, o.msg);
o = activeX._newHTTP(true);
activeX.failureReport(o.err, o.msg);
if (bBail) {
if (!activeX.enabled) {
_exit("noactiveX", activeX.message);
}
}
}

//-->
</script>
<script type="text/javascript">
(function CGLaunch_Step1() {
var e;

try {
document.execCommand("BackgroundImageCache", false, true)
} catch (e) {
e = null;
}

window.LAUNCH_ERR_MSG = 'Starting failsafe launch failed';


failSafe_start();
window.LAUNCH_ERR_MSG = '';

}());

</script>

<script type="text/javascript" charset="utf-8">gRegLaunch.push('GX-


gxiCss');</script><link rel="stylesheet" type="text/css"
href="http://mail.yimg.com/d/lib/gx/h2/css/us/497a69dc0fb10dd03a68836a99f6749c_1.c
ss"/>
<script type="text/javascript" charset="utf-8">gRegLaunch.push('GX-
yui_loader');gRegLaunch.push('GX-init_gx');</script><script
type="text/javascript">

(function CGLaunch_Step2() {

window.LAUNCH_ERR_MSG = 'Testing for activeX objects failed';


activeX.test(true);
window.LAUNCH_ERR_MSG = '';
}());

</script>

<script id="loginVars" type="text/plain" charset="utf-8" class="jsonData">


<!--
window.launchText = "Loading Yahoo! Mail....";
window.lUserName = 'michaelyndana';
window.lLoggedInAs = 'michaelyndana';
window.lAction_cookie = '0=0';
window.lLoginError = "Yahoo! Mail experienced a login error:
";
window.lIsDebug = false;
window.lCookieError = "We cannot read your cookie file.\n\nThis
window will close when you click OK. Sometimes it is enough to simply
start\nanother instance of the browser and sign in again to Yahoo! Mail, but often
you\nwill have to close all browser windows. We apologize for the
inconvenience.";
window.lLaunchPhpLoading = "loading ";
window.lEllipsisChar = "...";
//-->
</script>
<script type="text/javascript" charset="utf-8">
(function CGLaunch_Step3() {
var e;
window.LAUNCH_ERR_MSG = 'Setting global login vars for onload/launch
failed';
parseLaunchJSON("loginVars", "Could not evaluate login vars (lUserName)
etc", "Could not get loginVars dom node data");
window.LAUNCH_ERR_MSG = '';

try {
gLaunchProfile.stop("-loginVarsParse");
gLaunchProfile.start("-kPartnerParse");
} catch (e) { e = null; }

}());

</script>
<script id="kPartnerData" type="text/plain" charset="utf-8" class="jsonData">
<!--
window.kPartner =
{"location":"http:\/\/us.mg4.mail.yahoo.com\/dc\/launch","serverName":"us.mg4.mail
.yahoo.com","farm":"1118","launchParams":
{"To":"","Cc":"","Bcc":"","Subj":"","Body":"","action":"","umid":"","fid":"","stId
":"","stCat":"","query":"","appId":"","params":
[],"mostatus":"","mocode":"","movsig":"","moaddr":""},"wssid":"FTECE7Bs89L","path"
:
{"proxy":"","webApp":"\/dc\/","webService":"ymws"},"commonDomain":".mail.yahoo.com
","bizMailDomain":null,"zbouncerUrl":"http:\/\/zbouncer.smallbusiness.zcs.mail.yah
oo.com:7078\/bouncer.php?","zpaRedirectionEnabled":"true","zcrumb":"kZOTwymH2e7","
mg":"http:\/\/us.mg4.mail.yahoo.com\/dc\/launch","useBM":true,"jsLib":
{"combo":1,"comboConf":"1","ycsBuild":1,"base":"http:\/\/mail.yimg.com\/d\/","scri
pt":"combo","dir":"lib"},"resConf":{"normal":
{"edgeServe":0,"base":"http:\/\/us.mg4.mail.yahoo.com\/","combo":"dc\/combo","dir"
:"lib","versionPath":"cg240_3\/","filePath":"inc\/akamai\/","jsDir":"js\/","cssDir
":"css\/","htmlDir":"html\/","intlDir":"us\/","comboFilePath":"akamai\/"},"alt":
{"edgeServe":0,"base":"http:\/\/us.mg4.mail.yahoo.com\/","combo":"dc\/combo","dir"
:"","versionPath":"cg240_3\/","filePath":"inc\/akamai\/","jsDir":"js\/","cssDir":"
css\/","htmlDir":"html\/","intlDir":"us\/","comboFilePath":"akamai\/"}},"userDomai
n":"","intl":{"user":"us","stripped":"us","loc":"us","lang":"en-US"},"calendar":
{"enabled":true,"userProvisioned":"","mobileDelivery":true,"lastModTimestamp":0,"c
reateTimestamp":0,"version":0},"showCalStrip":false,"ab":{"load":1},"droplet":
{"allowed":0},"messenger":
{"enabled":true,"gTalkEnabled":false,"showInterop":true,"newoverlay":true,"server"
:"","port":5050,"logsdk":false},"isAMT":false,"sms":{"enabled":true},"relogin":
{"popup":true,"url":"https:\/\/login.yahoo.com\/config\/login_verify2?.intl=us&.sr
c=cdgm&.pd=c
%3dUUxCT1K42e7bwdS23u.79t.FKQ--"},"showWelcomeATT":"","showSearchAssist":true,"tra
ckRocketStats":"none","useIMMailNotifications":true,"rsLaunchMetrics":true,"beacon
SubPageViews":true,"opi":
{"server":"mail.opi.yahoo.com","script":"online","param1":"u=","param2":"&m=g&t=0"
,"newserver":"opium3.msg.vip.mud.yahoo.com","newparam2":"&m=g&t=0"},"im":
{"server":"login.yahoo.com","script":"config\/send_webmesg","param1":".target=","p
aram2":""},"mobile":{"hcs":false,"hsa":false},"mailOptions":
{"enabled":"true","url":"\/y5\/s\/mailoptions","reqIntl":false},"weather":
{"enabled":"true","useWrapper":false,"ocpHost":"yapi.feeds.yahoo.com","timeout":"1
"},"isMsgrUser":"2\u0003login\u00021262628942","ll":"null","autoSave":
{"interval":"5","timeout":"15"},"syncTimeRatio":"3","isin":0,"useRichText":false,"
addUnknownContact":"prompt","dirSearchOrder":"null","cdl":false,"userYIV":"","show
WelcomePage":false,"intRedirectEnabled":true,"emoticonBaseUrl":"http:\/\/mail.yimg
.com\/a\/i\/mesg\/tsmileys2\/","fpw":"","fph":"","btph":"","apbxh":"","msgTableRow
Height":22,"bigTableHeaderHeight":17,"cwpref":
{"frc":"","suc":"","rec":"","sic":"","toc":"","sec":"","moc":"","loc":"","atc":"",
"apc":"","nac":"","emc":"","phc":"","coc":""},"cwdef":
{"frc":140,"suc":205,"rec":150,"sic":50,"toc":150,"sec":150,"moc":130,"loc":85,"at
c":18,"apc":160,"nac":160,"emc":160,"phc":140,"coc":150},"blindedName":"EOUPMafeJb
Orf^AUJYYz8w--","blindedName2":"","acFeedUrl":"http:\/\/address.mail.yahoo.com\/ac
js3\/utf8\/us\/EOUPMafeJbOrf^AUJYYz8w--","acListFeedUrl":"http:\/\/address.mail.ya
hoo.com\/acjs4\/utf8\/us\/EOUPMafeJbOrf^AUJYYz8w--","acCodeUrl":"http:\/\/mail.yim
g.com\/d\/lib\/pim\/r\/medici\/\/mail\/ac.js","isHeadAdServed":true,"sido":0,"buck
et":100,"pr":0,"encd":"iso-8859-1","emim":"%7B%22site-attribute%22%3A%22content%3D
%5C%22tenure%3A%20week%2014-%3Bno_expandable%3Bajax_cert_expandable%5C
%22%22%7D","ult":true,"av":"0","bcn":1,"skwd":160,"impr":
[3000,3000,3000,3000,15000,3000,10000,3000,10000,3000],"apos":
{"0":"SKY,MNW,SW1,SW2,SW3","1":"CSKY,MNW,SW1,SW2,SW3","2":"MNW,SW1,SW2,SW3","3":"S
KY","4":"CSKY,MNW,SW1,SW2,SW3","5":"CSKY,SW1,SW2,SW3","6":"CSKY,SW1,SW2,SW3","7":"
CSKY,MNW","8":"CSKY,MNW","9":"","99":"SKY,H1,H2,H3,SC1,SC2,LREC,MON"},"slug":1,"ep
os":"","wadp":["LREC",""],"wprp":["H1,H2,H3","H1,H4,H5"],"wpne":
["H1","H1"],"bizMailType":0,"pbranding":
{"tenabled":true,"tlink":"http:\/\/overview.mail.yahoo.com\/transfercontacts","pco
de":"","isSN":false,"pname":"Yahoo!","tos":null,"ppolicy":null,"copyright":null,"n
ofb":false,"feedback":null,"nocus":false,"contactus":null,"upsenabled":false,"ups"
:null,"tutorial_link":null,"helpUrl":null},"showNuTour":
{"newUser":false,"migUser":false},"gxNumInfo":70,"fsconf":
{"enabled":false},"msgrPresenceUrl":"http:\/\/mail.yimg.com\/a\/i\/us\/pim\/userst
atus_2.swf","recoveryEnabled":true,"filterByContactsEnabled":true,"systemHost":"cg
9.c4.mail.gq1.yahoo.com","version":
{"major":"2","minor":"5","patch":"0","build":"240.3","buildTime":"11\/19\/2009
05:45 PM"},"isCGCluster":true,"AdBeaconInfo":{"AdID":"","AdIDTime":0,"AdState":"-
1"},"minCheckMailMinutes":"10","maxCheckMailMinutes":"10","maxBartCheckMailMinutes
":"2","nosyProb":"0.20","sendInvalidParseError":1,"showHTMLResponse":1,"offline":f
alse,"lw":
{"on":false,"url":"http:\/\/l.yimg.com\/d\/lib\/s2\/rel\/ysc_csc_ymailcg_3.2.3.js"
},"uploader":
{"yui_enabled":true,"bplus_enabled":true,"bplus_develop":false,"bplus_services":
{"Uploader":"3.2.6","FileAccess":"1.0.11","ImageAlter":"3.0.2","DragAndDrop":"1","
FileBrowse":"1"}},"queueCascadeMailRequests":"1"};
window.kPartner.openMail =
{"enabled":true,"webcacheHostCom":"yom.mail.yahoo.com","webcacheHostNet":"yom.mail
.yahoo.net","yapProxyHostCom":"yom.mail.yahoo.com","yapProxyPath":"\/v1\/app\/","a
ppSandboxing":"0","crossframeJsUrl":"http:\/\/mail.yimg.com\/a\/lib\/om\/crossfram
e\/1.0.20\/crossframe-
min.js","xdmproxyVer":"1.0.32","appboxExpanded":"1","galleryVer":"1.0.119","crumb"
:"\/T2EQDHuiWh","guid":"VEB5YL2VNWVGQK3B6GD4VFAMI4","lang":["en-
US"],"galleryEnabled":"1","galleryDisableCaching":false,"newGalleryEnabled":true,"
ULTEnabled":true,"limit":{"search":{"perapptime":"3","allapptime":"3"},"compose":
{"allapptime":"3"},"getdata":
{"perapptime":"1","allapptime":"1","maxReturn":"20"}},"apiBasePath":"\/om\/api\/1.
0","getAppverAtLaunch":true,"keyPrefix":{"blacklist":"\/
[\\?|\\*]\/","app":"_APP_","cg":"_CG_"},"intlEnabled":false,"invitesEnabled":"1","
hasKey":false,"readAPIEnabled":"1","readAPIMaxApps":"2","readAPIMaxWscalls":"1","r
eadAPIPerAppLaunchTime":"5000","composeAPIEnabled":"1","EventQueueTimeout":"5000",
"yapProxyHostNet":"yom.mail.yahoo.net"};

window.kPartner.profileName = 'First NameMichael Lyn';


w

window.kPartner.gxconf =
{"enabled":true,"displayed":true,"social":true,"updateInterval":"10","nonSocialWel
come":false};
window.kPartner.ABUI = 'abui2';

//-->
</script>
<script type="text/javascript">
(function CGLaunch_Step4() {
var e;
window.LAUNCH_ERR_MSG = 'Failed calling parseLaunchJSON for kPartner';
parseLaunchJSON("kPartnerData", "Caught JS error evaluating kPartner",
"Could not get kPartner data node");
window.LAUNCH_ERR_MSG = '';

try {
gLaunchProfile.stop("-kPartner");
gLaunchProfile.stop("-kPartnerParse");
gLaunchProfile.start("-YMSigParse");
} catch (e) { e = null; }

}());
</script>

<script id="sigData" type="text/plain" charset="utf-8" class="jsonData">


<!--
window.ymsigy =
"v=1&n=bbunokpvhemb4&l=c82704bod30d0/o&p=m2a2j7q012000000&r=le&lg=en-
US&intl=us&np=1";
window.ymsigq = ".gx=1&.rand=eh57knhs4hn0l";
window.__gProfileTimeout__ = false;
//-->
</script>
<script type="text/javascript" charset="utf-8">
(function CGLaunch_Step5() {
var e;
window.LAUNCH_ERR_MSG = 'Failed calling parseLaunchJSON for sigData';
parseLaunchJSON("sigData", "Caught JS error evaluating sigData", "Could
not get sigData data node");
window.LAUNCH_ERR_MSG = '';

try {
gLaunchProfile.stop("-YMSigParse");
gLaunchProfile.start("-CompMapParse");
} catch (e) { e = null; }

}());
</script>
<script id="compMapData" type="text/plain" charset="utf-8" class="jsonData">
<!--
window.gComponentMap =
{"baseurl":"http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/","jsDir":"j
s\/","htmlDir":"html\/","intl":"us","intlDir":"us\/","components":
{"openapi_lightbox":["openapi_lightbox.js",17774,446],"compose_dialog":
["compose_dialog.js",2523,450],"addcxn_nomunge":["addcxn_nomunge.js",330,18],"ab":
["ab.js",32301,3694],"filters":["filters.js",6210,1793],"yui_menu":
["yui_menu.js",54959,4817],"yui_uploader":
["yui_uploader.js",18110,235],"fileshare_init":
["fileshare_init.js",2448],"openmail_init":
["openmail_init.js",16330],"fileshare_ui":
["fileshare_ui.js",2924,288],"bplus_install":
["bplus_install.js",9561,4060],"abui_ext":["abui_ext.js",7793,282],"im":
["im.js",31256,3422],"abui2":["abui2.js",4872,3301],"stationery":
["stationery.js",13071,2205],"msgaction_ext":["msgaction_ext.js",1664,32],"home":
["home.js",25069,3016],"compose_ext":
["compose_ext.js",21685,1697],"attachdownload":
["attachdownload.js",7031,1984],"ui_coverflow":
["ui_coverflow.js",6843,3095],"toast":["toast.js",3292,226],"y_msgr":
["y_msgr.js",4710],"calstripmini":["calstripmini.js",16698,543],"recovery":
["recovery.js",5449,697],"rstray":["rstray.js",1803,254],"core_ext":
["core_ext.js",1498],"openmail_idle":["openmail_idle.js",10803],"checkmail":
["checkmail.js",5570,854],"openapi_dialog":
["openapi_dialog.js",2098],"ui_lightbox":
["ui_lightbox.js",8761,2216],"calstrip_ext":
["calstrip_ext.js",21301,18831],"fileupload_ext":
["fileupload_ext.js",3120,600],"calstripedit":
["calstripedit.js",79487,7971],"acctswitcher":
["acctswitcher.js",1576,675],"bplus_nomunge":
["bplus_nomunge.js",6439,207],"tableview_ext":["tableview_ext.js",6927,42],"main":
["main.js",609033],"y_ulm":["y_ulm.js",27243,5128],"folders":
["folders.js",10317,1012],"sendsave":["sendsave.js",41663,7015],"y_cues":
["y_cues.js",5485,13327],"im_chat":["im_chat.js",89388,19433],"ab_dialog":
["ab_dialog.js",13072,1583],"test":["test.js",2195,225],"y_maps":
["y_maps.js",123692,497],"turing":["turing.js",7668,3203],"fileupload":
["fileupload.js",27377,6279],"txt":["txt.js",2188],"aa_munger":
["aa_munger.js",324],"abui":["abui2.js",4872,3301],"bulk":
["bulk.js",13226,2609],"print":["print.js",4249,182],"y_msgr_ext":
["y_msgr_ext.js",17688,83],"calstrip_hover":
["calstrip_hover.js",22424,7655],"stationery_startup":
["stationery_startup.js",6274,98],"im_dialog":
["im_dialog.js",13659,3180],"fileupload_yui":
["fileupload_yui.js",11353,2490],"welcometab":["welcometab.js",11714],"openapi":
["openapi.js",37104,2567],"yui_container_core":
["yui_container_core.js",40572,3478],"calstrip":
["calstrip.js",48658,4631],"yui_search_assist":
["yui_search_assist.js",29760,209],"messagelist_nomunge":
["messagelist_nomunge.js",50740,23442],"compose":
["compose.js",76767,25068],"search":["search.js",22302,3220],"yui_ext":
["yui_ext.js",22085,97],"openmail":["openmail.js",33392,7115],"helpbubbles":
["helpbubbles.js",34365,22264],"ramjet":["ramjet.js",6732,1160],"us":
["strings.js",140806],"yui_calendar":["yui_calendar.js",33331,58],"extnav":
["extnav.js",6614,529],"weather":["weather.js",6790,2128],"yui_container":
["yui_container.js",69094,26393],"dialog":["dialog.js",13209,3274],"menu":
["menu.js",38440,8207],"calrichmedia":["calrichmedia.js",5655,18],"options":
["options.js",13250,2005],"history":["history.js",5297,152],"GX-gxiCss":["GX-
gxiCss",32936],"GX-yui_loader":["GX-yui_loader",26844],"GX-init_gx":["GX-
init_gx",33974]},"wdComponents":{"openapi_lightbox":
["wd_openapi_lightbox.js",17774,446],"compose_dialog":
["wd_compose_dialog.js",2523,450],"addcxn_nomunge":
["wd_addcxn_nomunge.js",330,18],"ab":["wd_ab.js",32562,3694],"openapi":
["wd_openapi.js",38471,2567],"filters":["wd_filters.js",6210,1793],"yui_uploader":
["wd_yui_uploader.js",18110,235],"fileshare_init":
["wd_fileshare_init.js",2448],"openmail_init":
["wd_openmail_init.js",17060],"fileshare_ui":
["wd_fileshare_ui.js",2924,288],"yui_menu":["wd_yui_menu.js",54959,4817],"dialog":
["wd_dialog.js",13209,3274],"abui_ext":["wd_abui_ext.js",7793,282],"im":
["wd_im.js",31512,3422],"abui2":["wd_abui2.js",4981,3301],"msgaction_ext":
["wd_msgaction_ext.js",1664,32],"home":["wd_home.js",25428,3016],"compose_ext":
["wd_compose_ext.js",22055,1697],"attachdownload":
["wd_attachdownload.js",7471,1984],"y_msgr_ext":
["wd_y_msgr_ext.js",17688,83],"toast":["wd_toast.js",3292,226],"y_msgr":
["wd_y_msgr.js",4710],"calstripmini":["wd_calstripmini.js",16834,543],"recovery":
["wd_recovery.js",6492,697],"rstray":["wd_rstray.js",1803,254],"core_ext":
["wd_core_ext.js",1498],"openmail_idle":["wd_openmail_idle.js",11056],"checkmail":
["wd_checkmail.js",6380,854],"openapi_dialog":
["wd_openapi_dialog.js",2098],"print":["wd_print.js",4249,182],"ui_lightbox":
["wd_ui_lightbox.js",8761,2216],"ui_coverflow":
["wd_ui_coverflow.js",6843,3095],"fileupload_ext":
["wd_fileupload_ext.js",3120,600],"calstripedit":
["wd_calstripedit.js",79487,7971],"stationery":
["wd_stationery.js",13071,2205],"bplus_nomunge":
["wd_bplus_nomunge.js",6439,207],"tableview_ext":
["wd_tableview_ext.js",6927,42],"main":["wd_main.js",631601],"options":
["wd_options.js",13419,2005],"folders":["wd_folders.js",10368,1012],"sendsave":
["wd_sendsave.js",44384,7015],"y_cues":["wd_y_cues.js",5485,13327],"openmail":
["wd_openmail.js",34628,7115],"im_chat":["wd_im_chat.js",89437,19433],"ab_dialog":
["wd_ab_dialog.js",13072,1583],"y_maps":["wd_y_maps.js",123692,497],"turing":
["wd_turing.js",7782,3203],"fileupload":["wd_fileupload.js",28856,6279],"txt":
["wd_txt.js",2188],"aa_munger":["wd_aa_munger.js",324],"abui":
["wd_abui.js",55646,7393],"bulk":["wd_bulk.js",13318,2609],"acctswitcher":
["wd_acctswitcher.js",1576,675],"test":["wd_test.js",2195,225],"weather":
["wd_weather.js",6790,2128],"stationery_startup":
["wd_stationery_startup.js",6274,98],"im_dialog":
["wd_im_dialog.js",13659,3180],"fileupload_yui":
["wd_fileupload_yui.js",11538,2490],"welcometab":
["wd_welcometab.js",11796],"bplus_install":
["wd_bplus_install.js",10724,4060],"yui_container_core":
["wd_yui_container_core.js",40572,3478],"calstrip":
["wd_calstrip.js",49829,4631],"messagelist_nomunge":
["wd_messagelist_nomunge.js",50740,23442],"compose":
["wd_compose.js",79779,25068],"search":["wd_search.js",22535,3220],"yui_ext":
["wd_yui_ext.js",22085,97],"yui_search_assist":
["wd_yui_search_assist.js",29760,209],"helpbubbles":
["wd_helpbubbles.js",34418,22264],"ramjet":["wd_ramjet.js",38656,1160],"us":
["wd_strings.js",144390],"yui_calendar":["wd_yui_calendar.js",33331,58],"extnav":
["wd_extnav.js",6614,529],"calstrip_hover":
["wd_calstrip_hover.js",22600,7655],"yui_container":
["wd_yui_container.js",69094,26393],"menu":
["wd_menu.js",38440,8207],"calrichmedia":["wd_calrichmedia.js",5679,18],"history":
["wd_history.js",6048,152],"y_ulm":["wd_y_ulm.js",27243,5128],"calstrip_ext":
["wd_calstrip_ext.js",21911,18831]}};
//-->
</script>
<script type="text/javascript" charset="utf-8">
(function CGLaunch_Step6() {
var e;
window.LAUNCH_ERR_MSG = 'Setting up global component map failed';
parseLaunchJSON("compMapData", "Caught JS error evaluating
gComponentMap", "Could not get component map data node")
window.LAUNCH_ERR_MSG = '';

try {
gLaunchProfile.stop("-CompMapParse");
gLaunchProfile.start("-StringJsLoading");
} catch (e) { e = null; }
}());

kclassicTheme=kThemes={theme:'classic',colorC4:'#CDE9F7',colorH2:'#C7F5C3',colorK3
:'#DBDEDF',tab1Color:'#FFFFFF',fontHeadline:'#223661',folderIcons:'url(http://l.yi
mg.com/a/i/us/pim/dclient/cg240_3/img/md5/709bf32a73edef7cbe5d4a770292bc09_1.png)'
};
(function() {
var e;
try {
gLaunchProfile.start("-ThemeMapParse");
} catch (e) { e = null; }
}());
</script>

<script id="themeMapData" type="text/plain" charset="utf-8" class="jsonData">


<!--
window.gDefaultTheme = "classic";
window.themeMapJS = {"autumn_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/e1e509e665
208e455b845284215ba39e_1.js",669],"steel_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/0777d3f169
d16046c7de7ba4b948fc48_1.js",419],"classic_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/2559fd7747
433a4047f2acefdbc560bb_1.js",11592],"pink_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/a02175524c
217b9e7386d2f48aca3646_1.js",11274],"camouflage_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/91a8836b25
236b598d6fe49661088bb0_1.js",494],"blue_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/51ccee596a
e1c1672ee1eec05fd776ac_1.js",11260],"mountain_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/835ab104de
2648ebb4b66a5aace8b556_1.js",782],"water_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/e33f015db2
953b368a06ea23db51d62c_1.js",910],"plum_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/fefea407f8
9a2b3bb9e7a419639cd99c_1.js",11580],"sand_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/4af6a07516
5e3a600cc4149afb76bc44_1.js",11583],"ocean_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/6eb6b1517a
df5acf867c46346acbb23a_1.js",2362],"gold_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/06bdd9a2e1
f8e38aba5e9c71c2436238_1.js",11592],"lime_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/f062a2142f
f2c71df1a752594410b865_1.js",11580],"hearts_theme":
["http:\/\/mail.yimg.com\/d\/lib\/pim\/r\/dclient\/cg240_3\/js\/themes\/0ecbfa6c9b
639f1ad81f11c916c99c8b_1.js",668]};
//-->
</script>
<script type="text/javascript" charset="utf-8">
(function CGLaunch_Step8() {
var e;
window.LAUNCH_ERR_MSG = 'Setting up gDefaultTheme failed';
parseLaunchJSON("themeMapData", "Caught Error evaluating theme data",
"Could not get theme data node");
window.LAUNCH_ERR_MSG = '';

try {
gLaunchProfile.start("-ThemeMapParse");
} catch (e) { e = null; }

}());

gRegLaunch[gRegLaunch.length]="GX-yui_loader";
gRegLaunch[gRegLaunch.length]="GX-init_gx";
gRegLaunch[gRegLaunch.length]="us";
gRegLaunch[gRegLaunch.length]="main";
gRegLaunch[gRegLaunch.length]="openmail_init";
gRegLaunch[gRegLaunch.length]="openmail_idle";
gLaunchProfile.start("---GX-yui_loader");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/gx/h2/js/yui_loader/7ada72c543e372c24d155a1e1f194c
a8_1.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---GX-
yui_loader");
gLaunchProfile.start("---GX-init_gx");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/gx/h2/js/combo/init/us/e5125a31033f5266aee400f411b
97a9e_1.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---GX-
init_gx");
gLaunchProfile.start("---us");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/pim/r/dclient/cg240_3/js/us/strings.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---us");
gLaunchProfile.start("---main");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/pim/r/dclient/cg240_3/js/main/main.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---main");
gLaunchProfile.start("---openmail_init");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/pim/r/dclient/cg240_3/js/openmail_init/openmail_in
it.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---
openmail_init");
gLaunchProfile.start("---openmail_idle");</script>
<script type="text/javascript" charset="utf-8"
src="http://mail.yimg.com/d/lib/pim/r/dclient/cg240_3/js/openmail_idle/openmail_id
le.js"></script>
<script language="JavaScript" charset="utf-8">gLaunchProfile.stop("---
openmail_idle");
(function gx_createGalaxyData() {
try {
var gGalaxyDataStr =
"{\"loginAlias\":\"michaelyndana\",\"appid\":\"galaxy\",\"appidAlias\":\"galaxy\",
\"appName\":\"Galaxy\",\"intl\":\"us\",\"lang\":\"en-US\",\"version\":
{\"version\":\"2.5.0\",\"build\":\"35a\",\"buildTime\":\"11\\\/11\\\/2009 07:38
AM\",\"akamized\":\"true\"},\"isDev\":false,\"urlExtras\":\"&.intl=us&.intlFull=us
&_lang=us&ipIntl=us&app=candygram&.gx=1&gxcrumb=KPcuaZk.69r\",\"gxHref\":\"http:\\
\/\\\/us.mg4.mail.yahoo.com\\\/galaxy\\\/main\",\"profilePage\":\"http:\\\/\\\/pro
files.yahoo.com\\\/\",\"sabUrl\":\"http:\\\/\\\/address.yahoo.com\\\/?.src=ab\",\"
yosEnv\":\"prod\",\"maxMsgsToScanForCxns\":\"5000\",\"maxMsgsToScanForCnts\":\"500
0\",\"contactsFilterEnabled\":\"1\",\"boomerang\":true,\"isKid\":false,\"isFirstTi
me\":false,\"isPromotionalUser\":false,\"inactive\":0,\"abuse\":0,\"optedOut\":fal
se,\"connections\":0,\"appId\":\"candygram\",\"cdomain\":\".mail.yahoo.com\",\"cpa
th\":\"\\\/dc\\\/galaxy\\\/\",\"wsPrefix\":\"\\\/dc\",\"userHasAds\":true,\"hasPro
file\":true,\"profileImg\":\"http:\\\/\\\/l.yimg.com\\\/us.yimg.com\\\/i\\\/identi
ty\\\/nopic_64.gif\",\"kioskData\":
{\"initialized\":false,\"jsUrl\":\"http:\\\/\\\/l.yimg.com\\\/a\\\/lib\\\/pim\\\/r
\\\/abook\\\/kiosks\\\/invite\\\/1.1.44\\\/us\\\/invite_to_connect.js\",\"cssPath\
":\"http:\\\/\\\/l.yimg.com\\\/a\\\/lib\\\/pim\\\/r\\\/abook\\\/kiosks\\\/invite\\
\/1.1.44\\\/\",\"retrieve_jsUrl\":\"http:\\\/\\\/l.yimg.com\\\/a\\\/lib\\\/pim\\\/
r\\\/abook\\\/kiosks\\\/retrieve\\\/1.0.40\\\/us\\\/retrieve.js\",\"sender\":
{\"givenName\":\"First NameMichael
Lyn\",\"familyName\":\"Dana\",\"nickName\":\"First NameMichael
Lyn\",\"nux\":\"3\",\"guid\":\"VEB5YL2VNWVGQK3B6GD4VFAMI4\"},\"conf\":
{\"ip\":\"67.195.9.229\",\"proxy\":\"\\\/dc\\\/ws\\\/sd?\",\"src\":\"cg\",\"intl\"
:\"us\",\"spaceid_offset\":\"0\",\"wssid\":\"FTECE7Bs89L\",\"urlExtras\":\".gx=1\"
,\"timeout\":\"30000\",\"maxRec\":\"20\"}},\"linkClass\":\"fontLink\",\"isOverride
User\":false}";
eval("gGalaxyData = "+gGalaxyDataStr);
gGalaxyData.kioskData.retrieve_kiosk_init = eval(function(){var loader
=
YAHOO.addressbook.LoadRetrieve.getInstance();loader.setConfig({"path":"http:\/\/l.
yimg.com\/a\/lib\/pim\/r\/abook\/kiosks\/retrieve\/1.0.40\/","devmode":false});loa
der.load([]);loader.FileLoadSuccessEvent.subscribe(function(e)
{YAHOO.addressbook.retrieve.conf={context:"email",categoriesJSURL:"http://api.addr
ess.yahoo.com/api/ws/v1/getCategories.js?&appid=ymdc&ts=1263327104&.crumb=fgNkk
%2Fd9wgK&auth=94fcdafc6b6f7906fcfeb68b978c8cd9",contactsJSURL:"http://api.address.
yahoo.com/api/ws/v1/searchContacts.js?
email.present=1&fields=displayname,email&sort-
fields=name.first&appid=ymdc&ts=1263327104&.crumb=fgNkk
%2Fd9wgK&auth=31fcf133b7b40a5b93575e982543dd30",src:"cg",intl:"us",wssid:"FTECE7Bs
89L",debug:false};loader.LoadAndConfSuccessEvent.fire();});; return loader;}
); } catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed
while evaluating gGalaxyData" + ", " + e.name + ":" + (e.message ||
e.description));
}
}());

var gGxComponentMap = {};


(function gx_createCompMap() {
var e;
try { gGxComponentMap['yui_loader']=[
'http://mail.yimg.com/d/lib/gx/h2/js/yui_loader/7ada72c543e372c24
d155a1e1f194ca8_1.js'
];
gGxComponentMap['popups']=[
'http://mail.yimg.com/d/lib/gx/h2/js/popups/29173f8873b5069094a2d
740adcf51d0_1.js'
];
gGxComponentMap['user_info']=[
'http://mail.yimg.com/d/lib/gx/h2/js/user_info/f4f0d51a97171a7b92
0a00ebb9596a3c_1.js'
];
gGxComponentMap['yui_loader_mg']=[
'http://mail.yimg.com/d/lib/gx/h2/js/yui_loader_mg/e7ed14d2a8f35c
75c8d11331e0d382a8_1.js'
];
gGxComponentMap['weather']=[
'http://mail.yimg.com/d/lib/gx/h2/js/weather/ef26c9b359c843690ebe
408c8abdbc31_1.js'
];
gGxComponentMap['yui']=[
'http://mail.yimg.com/d/lib/gx/h2/js/yui/7948ba0b4802761ec677f53c
e1fffff5_1.js'
];
gGxComponentMap['init_gx']=[
'http://mail.yimg.com/d/lib/gx/h2/js/init_gx/99947f46880663adb83b
6ca17f9e0d28_1.js'
];
gGxComponentMap['core']=[
'http://mail.yimg.com/d/lib/gx/h2/js/core/fca079384b64a18dc54e9a3
d2638de42_1.js'
];
gGxComponentMap['feedback_gx']=[
'http://mail.yimg.com/d/lib/gx/h2/js/feedback_gx/678bb39c663edce5
31b540bfb92778bf_1.js'
];
gGxComponentMap["feedback_gx_css"] = {};
gGxComponentMap['main_css']=[
'http://mail.yimg.com/d/lib/gx/h2/css/us/497a69dc0fb10dd03a68836a
99f6749c_1.css'
];
gGxComponentMap['popups_css']=[
'http://mail.yimg.com/d/lib/gx/h2/css/us/popups/2afefa0575c0ffbb9
422b6765f51c1a4_1.css'
];
gGxComponentMap['sendconfirm_css']=[
'http://mail.yimg.com/d/lib/gx/h2/css/us/sendconfirm/94aae7ec3414
aa98f39a5aa13625b6b0_1.css'
];
gGxComponentMap['ulm_css']=[
'http://mail.yimg.com/d/lib/gx/h2/css/us/ulm/89693472e0959f6cad77
4bc7177fd972_1.css'
];
gGxComponentMap['status']=[
'http://mail.yimg.com/d/lib/gx/h2/js/status/us/1114cd58735a7d75dc
63c60766b259a2_1.js'
];
} catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed to
create component map" + ", " + e.name + ":" + (e.message || e.description));
}
}());

(function gx_setIntlStrings() {
try {
var intl = {"profile.test.FN_LN_l10n":"LN,FN"};
var lang = {"ulm_locale_l10n":"en-
US","weather.default_temp_units_l10n":"F","ulm_helpurl_l10n":"http:\/\/help.yahoo.
com\/l\/us\/yahoo\/help\/ulm\/","vitality_locale_l10n":"en-
US","show_feedback_link_l10n":true,"feedback_link_mongo_l10n":"http:\/\/feedback.m
ail.yahoo.com\/feedback_mail.php?
idf=gx","profile.test.url_l10n":"http:\/\/yosqa.profiles.yahoo.com"};
var ipIntl = [];
for(var i in intl) GxStrings[i]=intl[i];
for(var i in lang) GxStrings[i]=lang[i];
for(var i in ipIntl) GxStrings[i]=ipIntl[i];
} catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed in
addGalaxyIntlStrings" + ", " + e.name + ":" + (e.message || e.description));
}
}());

(function gx_setCompMap() {
var e;
try {
GxComponent.setMap( gGxComponentMap );
} catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed to set
component map" + ", " + e.name + ":" + (e.message || e.description));
}
}());

(function gx_addLoadHandlers() {
var e;
try {
if ( window.addEventListener ) {
window.removeEventListener("load",YAHOO.galaxy.onload, false);
window.addEventListener("load",YAHOO.galaxy.onload, false);
} else if ( window.attachEvent ) {
window.detachEvent("onload",YAHOO.galaxy.onload);
window.attachEvent("onload",YAHOO.galaxy.onload);
}
} catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed to
attach galaxy load handlers" + ", " + e.name + ":" + (e.message ||
e.description));
}
}());

(function gx_setCookie() {
var e;
try {
var cv =
"xOtYo5XxvBw3wpk1NjsgBduuNQnqWGmGKmf7FDqqXCobwPk.HG1zfZD3G41RSvb5LvFnIvslb_RNP7iTz
BPn6iw..EpkL_GIiHJ_qFbsb6xlomBFjfgeqBgocEvviMAG5NijLwAfA2PDpUE.zZ4A";
document.cookie = "YM.GX="+cv+"; domain=.mail.yahoo.com;
path=/dc/galaxy/";
} catch (e) {
if(window._exit) window._exit("galaxyJsFailure", "Galaxy:Failed to set
galaxy cookie" + ", " + e.name + ":" + (e.message || e.description));
}
}());
</script>
<script type="text/plain" id="gxInitData" class="jsonData">
<!--
window.galaxyInitJS = window.galaxyInitJO = {"status":{"messages":[]},"modules":
{"html":"<script type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_NUX'); }<\/script><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.stop('GX_NUX'); }<\/script>\t<div
class=\"ch_box\" id=\"ch_content\" >\t\t<div id=\"ch_col_home\"
style=\"_home_width_\" class=\"yui-g\" >\t<!-- home column layout --><script
type=\"text\/javascript\">if (window.gLaunchProfile)
{ gLaunchProfile.start(\"GX_AD_slot_N2\"); }<\/script><div id=\"slot_N2\"
class=\"gxBoom boom\" style=\"text-align: right;\"> \n <iframe
id=\"N2\" class=\"gxBoom\" scrolling=\"no\" frameborder=\"0\"
allowtransparency=\"\" marginheight=\"0\" marginwidth=\"0\" style= \"border-
width: 0px; margin: 0px; padding: 0px; width: 100%;
height:90px;float:right; \">\n\n <\/iframe>\n <\/div><script
type=\"text\/javascript\">if (window.gLaunchProfile)
{ gLaunchProfile.stop(\"GX_AD_slot_N2\"); }<\/script>\t<!-- yui-u first
-->\t\t\t<div id=\"ch_col_h2\" style=\"_h2_width_\" class=\"yui-u\"><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_USER_PROFILE'); }<\/script>\t\t\t\t<div
id=\"gx_userprofile\"> <div id=\"gx_feature_cue\" >\n <div
class=\"gx_feature_cue_hd\">\n New! An easier way to keep up with
friends and family! <\/div>\n <div
class=\"gx_feature_cue_bd\">\n <ul>\n <li>\n
<span class=\"gx_ls gx_first\"><\/span>\n <span> Stay
updated with what they share online. <a class=\"fontLink\" target=\"_blank\"
href=\"http:\/\/overview.mail.yahoo.com\/connectmore\/updates\">Learn more<\/a>
<\/span>\n <\/li>\n <li>\n
<span class=\"gx_ls gx_mid\"><\/span>\n <span> Get
their emails prioritized in your Inbox. <a class=\"fontLink\" target=\"_blank\"
href=\"http:\/\/help.yahoo.com\/l\/us\/yahoo\/mail\/yahoomail\/connections\/mltams
sgcontct.html;_ylt=Aicx5GRQ54u7F9sJKKep012n.HZG\">See how<\/a> <\/span>\n
<\/li>\n <li>\n <span class=\"gx_ls
gx_last\"><\/span>\n <span> Never miss their birthdays
&#150; you'll get convenient reminders!<\/span>\n <\/li>\n
<\/ul>\n <div class=\"gx_mn_started\">\n <span
onclick=\"_cch(event, 'popups:showNotificationCue', null, this); return
false;\">\n &#187; Get Started
<\/span>\n <\/div>\n <\/div>\n <div
id=\"gx_fc_btn\" title=\"Close\" onclick=\"_cmdGx('user_info:closeBox', null,
null, {id:'gx_feature_cue', cueId:'f1'});\"><\/div>\n <\/div>\n<div
class=\"ch_mod\" id=\"ch_home_bd\"><div class=\"user_card\" id=\"bight\"><div
id=\"img_profile\"><div id=\"user_img\"><a id=\"profile_link\"
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTFtZTRyMmE2BF9TAzk3MTgwMDM0OARzZWMDdG4
Ec2xrA3Byb2ZpbGUEdGFyA3Byb2ZpbGVzLnlhaG9vLmNvbQ--\/SIG=11r4bp30m\/**http
%3A\/\/profiles.yahoo.com\/u\/VEB5YL2VNWVGQK3B6GD4VFAMI4\" target=\"_blank\"
class=\"ult_track\" title=\"\"><img class=\"avatar\" id=\"userprofileimage\"
src=\"http:\/\/l.yimg.com\/us.yimg.com\/i\/identity\/nopic_64.gif\" title=\"First
NameMichael Lyn\" alt=\"First NameMichael Lyn\" \/><\/a><\/div><\/div>\t\t\t<h2
class=\"user_name\">\t\t\t\tHello, <span id=\"gx_prof_name\">First
NameMichael ...<\/span>!<\/h2> <div class=\"user_msg\"><span
id=\"gxInboxCount\" class=\"clickable\" href=\"#\"
onclick=\"_cch(event,'gotoMailBox', {'fdName':'Inbox','app':'candygram',
'gstate':'3'}, '');return false;\"><div id=\"gxInbEnv\" class=\"stat_img
gxUnread\"><\/div><span id=\"gxNoUnread\" style=\"display:none\">No unread emails
in your <a id=\"gx_user_inbx_tran\" href=\"#\"
onclick=\"_cch(event,'gotoMailBox', {'fdName':'Inbox','app':'candygram',
'gstate':'3'}, '');return false;\"class=\"fontLink\" title=\"Go to
Inbox\">Inbox<\/a><\/span> <a id=\"gx_user_inbx\" href=\"#\"
onclick=\"_cch(event,'gotoMailBox', {'fdName':'Inbox','app':'candygram',
'gstate':'3'}, '');return false;\"class=\"fontLink\" title=\"Go to
Inbox\">Inbox<\/a><span id=\"unread_count\"> (1)<\/span><\/span><\/div>
<div class=\"user_status\">\n <div id=\"gxNewStat\" class=\"\"
onclick=\"_cch(event,'status_edit',null,this);\" onmouseout=\"_cch(event,'gx-
out',null,this);\" onmouseover=\"_cch(event,'status-over',null,this);\">\n
\n <div id=\"gx_stat_box\" class=\"stat_img new_msg\">\n <div
class=\"stat_img bbl_l\"> <\/div>\n <nobr id=\"gxStatDefault\"><a
href=\"#\"> What are you doing right now? <\/a><\/nobr>\n <div
class=\"gxInput_button_holder\" id=\"gxInput_button_holder\">\n \t
<div id=\"gxSOM\" class=\"stat_img clickable\" title=\"Status-O-Matique\"
onclick= \"_cch(event,'status:random',{'name':'First NameMichael Lyn'},this);\">\n
<\/div>\n \t\n <div>\n\t\t<div id=\"gx_textarea_container\"
>\n\t\t <label for=\"gxStatInput\" class=\"offscreen\">Update your
status<\/label>\n\t\t <textarea id=\"gxStatInput\" maxlength=\"140\"
onkeypress=\"_cch(event,'status_keyups',null,this);\"
onkeyup=\"_cch(event,'status_key',null,this);\"
onkeydown=\"_cch(event,'status_keyups',null,this);\"
onpaste=\"_cch(event,'status_keyups',null,this);\"
oninput=\"_cch(event,'status_keyups',null,this);\"
type=\"text\"><\/textarea>\n\t\t<\/div>\n\n <div class=\"clearFix\">\n
<div class=\"gx_stat_txt\" >\n Shared with
<span onclick=\"_cch(event, 'core:showStatusMenu'); return false;\">\n
<a id=\"gx_stat_pref\" href=\"#\" class=\"fontLink\">\n
Everyone<span class=\"offscreen\"> - Click to choose the sharing options<\/span>
<\/a><b class=\"stat_img\"> <\/b>\n <\/span>\n<div
id=\"statusSelectorMenu\" class=\"hidden\" onclick=\"_cch(event,
'core:changeStatusOptions')\">\n <ul class=\"first\"
role=\"radiogroup\">\n <li class=\"first\"
onmouseover=\"_cch(event, 'gx-over', null, this)\" onmouseout=\"_cch(event, 'gx-
out', null, this)\" value=\"0\" role=\"presentation\"><a href=\"#\" role=\"radio\"
aria-checked=\"true\" name=\"mygroup\" ><span class=\"offscreen\">Share With
<\/span>Everyone<\/a><\/li>\n <li class=\"second\"
onmouseover=\"_cch(event, 'gx-over', null, this)\" onmouseout=\"_cch(event, 'gx-
out', null, this)\" value=\"1\" role=\"presentation\"><a href=\"#\" role=\"radio\"
aria-checked=\"true\" name=\"mygroup\" ><span class=\"offscreen\">Share With
<\/span>Connections<\/a><\/li>\n <\/ul>\n
<\/div>\n <\/div> <div
class=\"gx_stat_txt_Cnt\"><div id=\"gxstatChatCnt\">140 <\/div>remaining<\/div>\n
<input type=\"hidden\" id=\"gx_stat_menuState\" value=\"0\">\n
<span id=\"gxStatDef\" style=\"display:none\"><\/span>\n
<\/div>\n <\/div>\n <div id=\"gxStatPost\"
onclick=\"_cch(event,'status_update',null,this);\">\n <div
class=\"stat_img lft\"><\/div>\n <div class=\"stat_img
mid\">Post<input id=\"gx_status_button\" type=\"button\" class=\"offscreen\"
title=\"Post your update\"\/><\/div>\n <div class=\"stat_img
rht\"><\/div>\n <\/div>\n <\/div>\n <\/div>\n\n<\/div>\n\n
<div id=\"gxCurStat\" style=\"display:none\">\n <span
class=\"gxStatQuote\">&quot;<\/span><span title=\"\" id=\"gxCurMsg\"><\/span><span
class=\"gxStatQuote\">&quot;<\/span><span id=\"gxStatTime\"
class=\"timestamp\"><\/span><a class=\"del_msg fontLink\" href=\"#\"
onclick=\"_cch(event,'status_update',null,this);return false;\">clear<\/a>\n
<\/div>\n <\/div>\n <\/div> <\/div>\t\t\t\t<\/div><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_USER_PROFILE'); }<\/script><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_USER_MESSAGES'); }<\/script>\t\t\t<div
id=\"gx_messages\" style=\"display:none\" class=\"ch_mod gx_msgs
clearfix\">\t\t\t\t<\/div><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.stop('GX_USER_MESSAGES'); }
<\/script><script type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_VITALITY'); }<\/script><div id=\"gx_vitality\"
style=\"display:none\" class=\"ch_mod topmod\"><\/div>\t<!-- Friends block end
--><script type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_VITALITY'); }<\/script><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_NEWS'); }<\/script>\t\t\t\t<div id=\"gx_vnews\"
class=\"ch_mod bottommod\"> <div class=\"hd colorC3 colorK1\"
id=\"gx_vnews_header\">\n <h3 class=\"title\">Today<\/h3>\n
<div id=\"gxW\" class=\"weatherstrip\">\n <div
id=\"gxW_bd\" class=\"weatherAndLocation\">\n <div id=\"gx_we_icon_c\"
onclick=\"_cch(event, 'weather:showForecast', '{pos:\\'1\\',gstate:\\'3\\'}')\">\n
<div id=\"gx_we_icon\" class=\"gx_weather_icon iconContainer icon34\"
title=\"Mostly Sunny\"><\/div>\n <\/div>\n <span
id=\"gxWeatherUrlExtras\" style=\"display:none\"><\/span>\n <a
href=\"#\" id=\"curConditions\" class=\"conditions fontLink\" title=\"View weather
details\" onmouseover=\"_cch(event, 'gx-over', null, this)\"
onmouseout=\"_cch(event,
'gx-out', null, this)\" onclick=\"_cch(event, 'weather:showForecast',
'{pos:\\'2\\',gstate:\\'3\\'}');return false;\">\n <label
id=\"gx_we_hlbl\">H <\/label><span id=\"gx_we_hval\"
class=\"data\">74&deg;<\/span>\n <label id=\"gx_we_llbl\">L
<\/label><span id=\"gx_we_lval\" class=\"data\">43&deg;<\/span>\n
<\/a>\n <div class=\"location locationCg \">\n <a
id=\"locationAnchor\" class=\"locationTrigger fontLink\" title=\"Change location
from Queen Creek, AZ 85242\" href=\"#\" onmouseover=\"_cch(event, 'gx-over', null,
this)\" onmouseout=\"_cch(event, 'gx-out', null, this)\" onclick=\"_cch(event,
'weather:changeLocation', {'sLoc':'en-
US','sCrumb':'4e498ca84d51fd6cd180cc650f4b437c,1263327103','savedLoc':'Queen
Creek, AZ 85242','defaultLoc':'Queen Creek, AZ
85242','isDefault':0,'hasFeedErr':false});return false;\" >\n
Queen Creek, AZ...<\/a>\n &nbsp;&nbsp;&nbsp;&nbsp;\n
<\/div>\n <\/div>\n <\/div>\n <\/div>\n
<div class=\"bd\" id=\"gx_vnews_body\">\n <!-- news content -->\n
<div id=\"feedSelector\" class=\"unselected\" rel=\"topstories\">\n
<ul>\n <li id=\"nw_topstories\" class=\"feedItem selTxt\"
title=\"Top Stories\" >\n <div
id=\"categoryBtn\">\n <div id=\"categoryBtnL\"><\/div>\n
<div id=\"categoryBtnC\"><a href=\"#\" onClick=\"return false;\" class=\" selected
\">Top Stories<\/a><\/div>\n <div
id=\"categoryBtnR\"><\/div>\n <\/div>\n
<\/li>\n <li id=\"nw_buzz\" class=\"feedItem \" title=\"Buzz\"
onclick=\"_cch(event, 'weather:updateNews', {sel:'buzz',curr:'topstories',
gstate:'3'})\" >\n <a href=\"#\"
onClick=\"return false;\" class=\"unselected\">Buzz<\/a>
<\/li>\n <li id=\"nw_local\" class=\"feedItem \"
title=\"Local\" onclick=\"_cch(event, 'weather:updateNews',
{sel:'local',curr:'topstories', gstate:'3'})\" >\n
<a href=\"#\" onClick=\"return false;\" class=\"unselected\">Local<\/a>
<\/li>\n <li id=\"nw_entertainment\" class=\"feedItem \"
title=\"Entertainment\" onclick=\"_cch(event, 'weather:updateNews',
{sel:'entertainment',curr:'topstories', gstate:'3'})\" >\n
<a href=\"#\" onClick=\"return false;\" class=\"unselected\">Entertainment<\/a>
<\/li>\n <li id=\"nw_sports\" class=\"feedItem \"
title=\"Sports\" onclick=\"_cch(event, 'weather:updateNews',
{sel:'sports',curr:'topstories', gstate:'3'})\" >\n
<a href=\"#\" onClick=\"return false;\" class=\"unselected\">Sports<\/a>
<\/li>\n <li id=\"nw_world\" class=\"feedItem \"
title=\"World\" onclick=\"_cch(event, 'weather:updateNews',
{sel:'world',curr:'topstories', gstate:'3'})\" >\n
<a href=\"#\" onClick=\"return false;\" class=\"unselected\">World<\/a>
<\/li>\n <\/ul>\n\t<br style=\"clear:both;\" \/>\n
<\/div>\n <ul id=\"news_list\">\n
<li class=\"first\" >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTI4ZWR0bXRjBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDMQRzZWMDbndfdG9wc3RvcmllcwRzbGsDaW1nBHRhcgNuZXdzLnlhaG9vLmNvbQ--\/SIG=13v
n1oaq5\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_go_ca_st_pe\/us_us_afghanistan\"
target=\"_blank\" class=\"ult_news_track\" ><img id=\"gx_news_img\"
onload=\"_cch(event, 'posVitMod');\" class=\"news_image fontLink invisible\"
dsrc=\"http:\/\/d.yimg.com\/a\/p\/ap\/20091217\/capt.e01ff71336c14ab2bb0ad5f6b5586
b6b.top_ten_news_stories_2009__fort_hood_shooting_ny235.jpg?
x=130&y=86&q=85&sig=5G2MUiQ_WHbhleU7JJTvug--\"\/><\/a>\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhcnJtZXJuBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDMgRzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=13v
n1oaq5\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_go_ca_st_pe\/us_us_afghanistan\"
target=\"_blank\" class=\"ult_news_track fontLink\">Fort Hood troops ordered to
Afghanistan \n (AP)\n<\/a> <p>AP - The Pentagon has ordered
3,100 troops, mostly based in Fort Hood, Texas, to deploy to Afghanistan as part
of President Barack Obama's plan to beef up U.S. forces there.<\/p>
<div class=\"clear\" style=\"clear:both;\"><\/div>\n <\/li>\n\n
<li >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhYnZyOXEwBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDMwRzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=13i
uibv9d\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_re_mi_ea\/ml_iran\"
target=\"_blank\" class=\"ult_news_track fontLink\">Bomb kills Iran nuclear
physicist tied to Mousavi \n (AP)\n<\/a> <\/li>\n\n
<li >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhb3ZzdnZiBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDNARzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=140
cfbfdg\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_re_la_am_ca\/lt_drug_war_mexico\"
target=\"_blank\" class=\"ult_news_track fontLink\">US, Mexican officials: Tijuana
drug lord captured \n (AP)\n<\/a> <\/li>\n\n
<li >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhcWI4dTdrBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDNQRzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=13o
tut3k3\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_bi_go_ec_fi\/us_economy\"
target=\"_blank\" class=\"ult_news_track fontLink\">November trade deficit
increases to $36.4 billion \n (AP)\n<\/a> <\/li>\n\n
<li >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhb2gyaGE4BF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDNgRzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=13v
4k9oc0\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_re_us\/us_biden_mother_funeral\"
target=\"_blank\" class=\"ult_news_track fontLink\">Biden eulogizes mother, calls
her courageous \n (AP)\n<\/a> <\/li>\n\n
<li >\n <a
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTJhN3VmYmNxBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDNwRzZWMDbndfdG9wc3RvcmllcwRzbGsDdGl0bGUEdGFyA25ld3MueWFob28uY29t\/SIG=13o
sa59h5\/**http%3A\/\/us.rd.yahoo.com\/dailynews\/rss\/topstories\/*http
%3A\/\/news.yahoo.com\/s\/ap\/20100112\/ap_on_bi_ge\/un_un_corruption\"
target=\"_blank\" class=\"ult_news_track fontLink\">AP IMPACT: UN cuts back on
investigating fraud \n (AP)\n<\/a> <\/li>\n\n
<\/ul>\n\n <div class=\"moreNews\">\n <a
class=\"moreNews fontLink\" id=\"news_mod_more_news\"
href=\"http:\/\/us.lrd.yahoo.com\/_ylc=X3oDMTI5NWJja2FzBF9TAzk3MTgwMDM0OARnc3RhdGU
DMwRwb3MDOARzZWMDbndfdG9wc3RvcmllcwRzbGsDbW9yZQR0YXIDbmV3cy55YWhvby5jb20-\/SIG=116
i1p4bk\/**http%3A\/\/news.yahoo.com\/top-stories\" target=\"_blank\">&#187 More
News<\/a>\n <\/div>\n <\/div>\n <!-- news
content -->\n \t\t\t\t<\/div><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.stop('GX_NEWS'); }<\/script><div
id=\"feedback_spacer\" class=\"ch_mod\"><\/div><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.start('GX_KIOSK'); }
<\/script>\t\t\t\t<div id=\"gx_kiosks\" style=\"display:none\"
class=\"ch_mod\"><script>var
gx_kiosk_js={initialized:false};gx_kiosk_js.jsUrl='http:\/\/l.yimg.com\/a\/lib\/pi
m\/r\/abook\/kiosks\/invite\/1.1.44\/us\/invite_to_connect.js';gx_kiosk_js.cssPath
='http:\/\/l.yimg.com\/a\/lib\/pim\/r\/abook\/kiosks\/invite\/1.1.44\/';gx_kiosk_j
s.retrieve_jsUrl='http:\/\/l.yimg.com\/a\/lib\/pim\/r\/abook\/kiosks\/retrieve\/1.
0.40\/us\/retrieve.js';gx_kiosk_js.sender={givenName:'First NameMichael
Lyn',familyName:'Dana',nickName:'First NameMichael
Lyn',nux:'3',guid:'VEB5YL2VNWVGQK3B6GD4VFAMI4'};gx_kiosk_js.conf={ip:'67.195.9.229
',proxy:'\/dc\/ws\/sd?',src:'cg',intl:'us',spaceid_offset:'0',wssid:'FTECE7Bs89L',
urlExtras:'.gx=1',timeout:30000,maxRec:20};<\/script>\t\t\t\t<\/div><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_KIOSK'); }<\/script>\t\t\t<\/div>\t<!-- yui-u#ch_col_h2
--> <!-- yui-u#ch_col_h1--><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.start('GX_AD_slot_LREC'); }
<\/script><script type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_AD_slot_LREC'); }<\/script><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_AD_MIP4'); }<\/script><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_AD_MIP4'); }<\/script>\t\t\t<div id=\"ch_col_h1\"
class=\"yui-u first colorC7 colorK3\"><div id=\"ch_col_h1_inner\">\t<div
id=\"slot_LREC\" class=\"ch_mod gxBoom boomcolorC7\"> \t\n\t\t\t<iframe
id=\"LREC\" class=\"gxBoom\" src=\"%lrec_src%\" iframe scrolling=\"no\"
frameborder=\"0\" allowtransparency=\"\" marginheight=\"0\" marginwidth=\"0\"
style=\"border-width: 0px; margin: 0px; padding: 0px; width: 300px; height:
%lrec_height%px;\" >\n\t\t\t<\/iframe>\n\t\t\t<\/div>\t<div id=\"MIP4\"
class=\"ch_mod \"> \t\n\t\t\t<div id=\"slot_MIP4\">%mip4_content
%<\/div>\n\n\t\t\t<\/div><script
type=\"text\/javascript\">if(window.kPartner)kPartner.galaxy_ad_pos =
[\"LREC\",\"N2\",\"MIP4\"];<\/script><script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.start('GX_CONNECTS'); }<\/script><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.stop('GX_CONNECTS'); }<\/script> <div
id=\"gx_invite_others\" class=\"ch_mod\">\n \t\t\t\t<div class=\"hd
colorC3 colorK1\" id=\"gx_invite_others_hd\">\n\t\t\t\t\t<h3 id=\"gx_ino_ttl\"
class=\"title\">Get Updates From Others<\/h3>\n <div
id=\"why_connect\" class=\"invite_hlp clickable\" onclick=\"_cch(event,
'why_connect', {st:'ot'}); return false;\" title=\"What's
this?\"><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"bd\">\n\t\t\t\t\t<div
class=\"user_card\">\n\t\t\t\t\t<div class=\"multi_32\" title=\"Get updates from
others\"><\/div>\n\t\t\t\t\t<ul>\n <li class=\"invite_friends\"><a
class=\"fontLink\" href=\"#\" id=\"invite_other_invite_friend\"
onclick=\"_cch(event, 'user_info:inviteFriend',
{'section':'invite_others'});return false;\">\nGet Updates from friends and
family\n\t\t\t\t\t<\/a><br
\/>\n\n<\/li><\/ul>\n\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div
class=\"ft\" id=\"ch_qfci\"><\/div> <\/div>\n <div
id=\"gx_invitations\" class=\"ch_mod\"
style=\"display:none;\">gx_invitations<\/div><div id=\"gx_suggestions\"
class=\"ch_mod\" style=\"display:none;\">gx_suggestions<\/div> \t\t\t
<\/div><\/div>\t<!-- end yui-u#ch_col_h1 --><div
id=\"ch_col_spacer\">&nbsp;<\/div><div id=\"gx_idf_c\"><div
id=\"yhelpPopupContainer\"> <\/div><a style=\"display:none;\" id=\"feedbackLink\"
href=\"#\" onClick=\"_cmdGx('loadSendFeedback', null, null,
{'identifier':'GALAXYCG', 'source':'from'}); return false;\">Send
Feedback<\/a><\/div>\t\t<\/div>\t<!-- yui-g -->\t<\/div>\t<!-- bd --><script
type='text\/javascript'>if (window.gLaunchProfile)
{ gLaunchProfile.start('GX_EMPTYMFMC'); }<\/script> <div
id=\"emptyMFMCView\" class=\"pane colorK3\" style=\"display:none;\">\n
<div id=\"emptyMFMCNote\">There are no emails from Connections in this
folder.<\/div>\n <div class=\"emtpyMFMCCxns\"><a class=\"fontLink\"
href=\"#\" onclick=\"_cch(event, 'user_info:inviteFriend',
{'section':'invite_others'});return false;\" >Get updates from others<\/a> and you
can View emails only from connections in any folder with just one click.<br
\/><\/div>\n <div id=\"gx_emptymfmc\" class=\"ch_mod\">\n
<\/div>\n <\/div>\n<script type='text\/javascript'>if
(window.gLaunchProfile) { gLaunchProfile.stop('GX_EMPTYMFMC'); }<\/script><iframe
id='galaxyLargeFrame'
style='height:0px;width:0px;display:none;'><\/iframe>"},"post_update":[],"data":
[]};
//-->
</script>
<script type="text/javascript">
(function CGLaunch_GXINIT() {
window.LAUNCH_ERR_MSG = 'Failed setting init galaxy data';
parseLaunchJSON("gxInitData", "Could not evaluate galaxy init data",
"Could not find gxInitData for galaxy init.");
window.LAUNCH_ERR_MSG = '';
}());

</script>

<script type="text/javascript">

(function() {
var e;
try {
gLaunchProfile.stop("-StringJsLoading");
gLaunchProfile.start("-IncludeStyle");
} catch (e) { e = null; }
}());
(function CGLaunch_Step9() {
var e, docCharSet;
try {
docCharset = (!document.charset) ? document.characterSet || null :
document.charset || null;

if(docCharset && docCharset != "UTF-8" && docCharset != "utf-8") {


if(typeof document.charset == "undefined" ) {
document.characterSet = "UTF-8"; } else {
document.charset = "UTF-8"; }
_exit("reload");
}
} catch (e) { e = null; }
}());

(function CGLaunch_Step10() {
var e, serverTime;

window.LAUNCH_ERR_MSG = 'Failed checking serverTime';

if(getCookie("Y") != unescape(ymsigy)) {
_exit("cookie");
return;
}
if(getQS() != ymsigq) {
_exit("QS");
return;
}

serverTime = parseInt(getCookie("YM.stck")) || 0;
if (serverTime == 1263327103)
_exit("reload");

window.LAUNCH_ERR_MSG = '';

}());

</script>
<script type="text/javascript">

function startUp(evt, mode)


{
var nMainJSTime = -1, failSafe_level, levelTime, foundBucket = false,
e;

try {
nMainJSTime = parseInt(gLaunchProfile.getTimer("-
StringJsLoading").total);
nMainJSTime = (isNaN(nMainJSTime) || nMainJSTime <= 0) ? -1 :
nMainJSTime;
} catch (e) {
nMainJSTime = -1;
e = null;
}
try {
mode = parseInt(mode) || 0;
} catch (e) {
e = null;
mode = 0;
}
/* we used to do :
*
* evt = evt || window.event || null
*
* and we did this for IE.
* the problem is that every-once in a while, window.event would
* have something in it and so we'd get kicked out to the
LaunchNeverFinished
* page even though its not the right event.
*
* attachEvent/addEventListener always send in the event object as the
first param
* so we wait for that rather than doing a check
*
* see bug 2518750
* SS - 02-06-2009
*/
if (!evt) {
if (!mode) {
if (nMainJSTime <= 0) {
failSafe_level = failSafe_bucket["max"];
} else {
for (failSafe_level in failSafe_bucket)
{
levelTime = failSafe_bucket[failSafe_level];
if (nMainJSTime <= levelTime && nMainJSTime >
0) {
foundBucket = true;
break;
}
}
failSafe_level = (foundBucket) ? failSafe_level :
"max";
}

failSafe_start(failSafe_level);

} else {
failSafe_start("level_5");
}
} else {
onPageLoad(1);
}
}

function onPageLoad(evtType)
{
var checkScreenRes, showYiesrvcDialog, e;

try {
window.detachEvent("onload", startUp);
} catch (e) { e = null; }

if (window.LAUNCH_DATA_ERR_HANDLER &&
LAUNCH_DATA_ERR_HANDLER.onerror())
return;

switch (evtType)
{
case 1: try { if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad called via event"); } catch (e) { e = null; } break;
case 0: try { if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad called right away b/c its not IE."); } catch (e) { e
= null; } break;
case 2: try { if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad called via failsafe timer"); } catch (e) { e =
null; } break;
default: try { if (window["DebugNoMunge"])
DebugNoMunge.log("onPageLoad called in an UNKNOWN WAY!!!"); } catch (e) { e =
null; } break;
}

checkScreenRes = true;
if (window.launch) {
failSafe_stop();
launch(checkScreenRes, false);
try { Dom.displayNone("loadStatusWrapper"); } catch (e) { e =
null; }
} else {
if (evtType != 1 && evtType != 0)
_exit("launchFailure", "onLoad::__Launcher does not
exist!!");
}
}
(function CGLaunch_Step11() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting up onload listeners';

window.attachEvent("onload", startUp);
startUp(null, 1);

window.LAUNCH_ERR_MSG = '';

}());
</script>

<script type="text/javascript">
(function CGLaunch_Step12() {
var e;

window.LAUNCH_ERR_MSG = 'Failed checking for launch data errors';

LAUNCH_DATA_ERR_HANDLER.errCode = "";

LAUNCH_DATA_ERR_HANDLER.onerror();

window.LAUNCH_ERR_MSG = '';

}());
</script>
<script id="kPartnerExtraData" type="text/plain" charset="utf-8" class="jsonData">
<!--

window.kPartner['showCalStrip'] = true;

window.kPartner['messenger'] =
{"enabled":true,"gTalkEnabled":false,"showInterop":true,"newoverlay":true,"server"
:"us.mg4.mail.yahoo.com","port":"5050","logsdk":false,"gTalkCloudId":"4"};

window.kPartner['showWelcomePage'] = 1;
window.kPartner['showMessageTab'] = 0;
window.kPartner['sms'] =
{
'enabled': true
};
window.kPartner['hasNotepad'] = true;
window.kPartner['hasSubjectOMatique'] = true;
window.kPartner['hasFunTyping'] = true;
window.kPartner['foldersInitiallyExpanded'] = false;
window.kPartner['showAppbox'] = window.kPartner.openMail.enabled ||
window.kPartner.openMail.intlEnabled || window.kPartner.calendar.enabled ||
window.kPartner.hasNotepad;

//-->
</script>
<script type="text/javascript">

(function CGLaunch_Step13() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting 2ndary kPartner params';

parseLaunchJSON("kPartnerExtraData", "Could not evaluate 2ndary


kPartner data", "Could not set kPartnerExtraData dom node data");

window.LAUNCH_ERR_MSG = '';

}());
</script>
<!-- Resource id #68--><!-- SpaceID=971800348 loc=FR01 noad -->
<script id="ulmData" type="text/plain" charset="utf-8" class="jsonData">
<!--
window.gMyLocations = {"aDefault":"Queen Creek, AZ
85242","aDefaultid":12794497,"loggedIn":"Queen Creek, AZ
85242","loggedInid":12794497,"localNews":"Queen Creek, AZ
85242","localNewsZip":"85242","woe_id":12794497,"location":"USA","zipCode":"85242"
,"settings":{"D":{"address":"","type":"P","city":"Queen
Creek","country":"USA","id":12794497,"isReg":1,"language":"","regStatus":3,"source
":"reg","state":"AZ","uniquezip":1,"zip":"85242"},"LIL":
{"address":"","type":"P","city":"Queen
Creek","country":"USA","id":12794497,"isReg":1,"language":"","regStatus":3,"source
":"reg","state":"AZ","uniquezip":1,"zip":"85242"},"LNL":
{"address":"","type":"P","city":"Queen
Creek","country":"USA","id":12794497,"isReg":1,"language":"","regStatus":3,"source
":"reg","state":"AZ","uniquezip":1,"zip":"85242"},"defaultModulePrefillLoc":"Queen
Creek, AZ 85242","lilModulePrefillLoc":"Queen Creek, AZ
85242","lnlModulePrefillLoc":"Queen Creek, AZ
85242","DEFAULTISDEFAULT":0,"ulmLocale":"en-
US","location":"USA","zipCode":"85242","sCRUMB":"4e498ca84d51fd6cd180cc650f4b437c,
1263327103","LOCALE":"en-
US","ULM_URLDATA":"\/dc\/ulm3.0\/ulm30_data.php","ULM_URLSAVEDEDIT":"http:\/\/edit
.npn.yahoo.com\/ulm3.0\/editpage\/ulmedit.php","ULMROWCOLORHOVER":"#FDF5E3","ULMRO
WCOLORNORMAL":"#FFF","SAVEDLOCATIONWEATHERCHECK":516,"USERLOCATIONDEFAULT":368,"US
ERLOCATIONLOCAL":370}};//-->
</script>
<script type="text/javascript">
(function CGLaunch_Step14() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting ulmData';

parseLaunchJSON("ulmData", "Could not evaluate ulm data", "Could not


set ulmData dom node data");

window.LAUNCH_ERR_MSG = '';
}());
</script>

<script id="welcomeKPartnerData" type="text/plain" charset="utf-8"


class="jsonData">
<!--

window.kPartner["welcomePageRssBaseDir"] = '';

//-->
</script>

<script type="text/javascript">
(function CGLaunch_Step14a() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting welcomeKPartnerData';

parseLaunchJSON("welcomeKPartnerData", "Could not evaluate


welcomeKPartnerData data", "Could not set welcomeKPartnerData dom node data");

window.LAUNCH_ERR_MSG = '';

}());
</script>
<script type="text/javascript">
(function() {
var e;
try {
if (window["rt_RemoveHandler"] && window["rt_LogTime"]){
rt_RemoveHandler("load");
rt_LogTime("t_rtpage", gLaunchStartTime || (new
Date()).getTime(), false);
}
} catch (e) { e = null; }
}());
</script>

<style>
* { box-sizing: border-box; -moz-box-sizing: border-box; -khtml-box-
sizing: border-box; -webkit-box-sizing: border-box; }
#pgb { width:750px; font-family:Arial, sans-serif; font-size:13px; margin-
left:10px; margin-right:10px; text-align:left; }
#pgb .left { width:350px; margin-top:20px; margin-bottom:20px; padding-left:10px;
padding-right:10px; float:left; }
#pgb .right { width:350px; margin-top:20px; margin-bottom:20px; padding-left:10px;
padding-right:10px; border-left:1px solid #DCDAD4; float:right; }
#pgb table { font-family:Arial, sans-serif; font-size:13px; }
#pgb a { color:#0066CC; }
#pgb li { margin-top:0.5em; }
#pgb .compactList { margin:0px; padding-left:1em; }
#pgb .compactList li { margin:0px; }
#pgb .primaryHeading { font-size:18px; font-weight:bold; color:#5C59B2; }
#pgb .subHeading { font-size:16px; font-weight:bold; color:#5C59B2; }
#pgb .subHeading2 { font-size:14px; color:#5C59B2; }
#pgb .primaryBodyTextTitle { font-size:13px; font-weight:bold; color:#000000; }
#pgb .primaryBodyText { font-size:13px; font-weight:normal; color:#000000; }
#pgb .smallBodyText { font-family:Verdana; font-size:11px; color:#000000; }
#pgb .smallBodyText2 { font-family:Verdana; font-size:9px; color:#000000; }
#pgb .textLabel { font-size:10px; color:#5C59B2; cursor:default; -moz-user-
select:none; -moz-user-focus:ignore; }
#pgb .pseudoLink { cursor:pointer; cursor:hand; color:#0065CC; text-
decoration:underline; }
#pgb .bold { font-weight:bold; }
#pgb .footer { font-size: 10px; line-height: 14px; color: #6C6C6C; }

/* Yahoo! button css */

.cta-w{background:transparent no-repeat top left;width:240px;font:14px bold


90%/1.2em arial;color:#000;text-decoration:none;text-align:center;margin:0 auto
1em;cursor:hand;cursor:pointer;display:block;}
#pgb .cta-w { color:#000000; }
.cta-w:hover{cursor:hand;cursor:pointer;}
.cta-w strong{background:transparent no-repeat top right;right:-
4px;position:relative;display:block;}
.cta-w strong strong{background:transparent no-repeat bottom left;top:5px;left:-
4px;right:0;}
.cta-w strong strong strong{background:transparent no-repeat bottom
right;padding:.2em 0 .5em;top:auto;right:-4px;left:auto;text-indent:-5px;}
.cta-w{background-image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/yel_tl.gif);}
.cta-w strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/yel_tr.gif);}
.cta-w strong strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/yel_bl.gif);}
.cta-w strong strong strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/yel_br.gif);}
.cta-w:hover{color:#000;background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/grn_tl.gif);}
.cta-w:link{color:#000;}
.cta-w:visited{color:#000;}
.cta-w:hover strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/grn_tr.gif);}
.cta-w:hover strong strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/grn_bl.gif);}
.cta-w:hover strong strong strong{background-
image:url(http://mail.yimg.com/a/i/us/nt/bn/cta/grn_br.gif);}

</style>

<!-- built on 11/19/2009 05:45 PM -->

<script type="text/javascript">
(function() {
var e;
try {
gLaunchProfile.stop("-IncludeStyle");
} catch (e) { e = null; }
}());

(function CGLaunchStep_BackCookie() {
var e, expTime
try {
expTime = new Date();
expTime.setTime(expTime.getTime() + 86400);
setCookie("YM.stck", "1263327103", expTime, "/dc/",
"mail.yahoo.com");
} catch (e) { e = null; }
}());

</script>

<script id="openMailSetup" type="text/plain" charset="utf-8" class="jsonData">


<!--
window.gOpenmailApplicationList =
[{"app":"6coj375ijcp33","instance":"6coj375ijcp33.30cb26opjcopi","label":"Attach
Large
Files","status":65,"date":1263327103,"version":6,"icon":"http:\/\/67.195.15.27\/om
\/image?
appid=6coj375ijcp33&type=icon&v=6","screen_shot":"http:\/\/67.195.15.27\/om\/image
?appid=6coj375ijcp33&type=full&v=6","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=6coj375ijcp33&type=<!--IMAGE_TYPE-->&v=6","needsAck":true},
{"app":"62dhh6thj8cb3","instance":"62dhh6thj8cb3.62cpo6crmcopg","label":"Automatic
Organizer","status":65,"date":1263327103,"version":13,"icon":"http:\/\/67.195.15.2
7\/om\/image?
appid=62dhh6thj8cb3&type=icon&v=13","screen_shot":"http:\/\/67.195.15.27\/om\/imag
e?
appid=62dhh6thj8cb3&type=full&v=13","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=62dhh6thj8cb3&type=<!--IMAGE_TYPE-->&v=13","needsAck":true},
{"app":"38chg6limaoj1","instance":"38chg6limaoj1.32o9l6oojadj4","label":"Edit
Photos","status":65,"date":1263327103,"version":7,"icon":"http:\/\/67.195.15.27\/o
m\/image?
appid=38chg6limaoj1&type=icon&v=7","screen_shot":"http:\/\/67.195.15.27\/om\/image
?appid=38chg6limaoj1&type=full&v=7","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=38chg6limaoj1&type=<!--IMAGE_TYPE-->&v=7","needsAck":true},
{"app":"38cpi6hi3ec33","instance":"38cpi6hi3ec33.68cb56oo3ge9l","label":"Evite","s
tatus":65,"date":1263327103,"version":5,"icon":"http:\/\/67.195.15.27\/om\/image?
appid=38cpi6hi3ec33&type=icon&v=5","screen_shot":"http:\/\/67.195.15.27\/om\/image
?appid=38cpi6hi3ec33&type=full&v=5","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=38cpi6hi3ec33&type=<!--IMAGE_TYPE-->&v=5","needsAck":true},
{"app":"6ae32cgp68pb6","instance":"6ae32cgp68pb6.68ohm6dijcopm","label":"Flickr","
status":65,"date":1263327103,"version":18,"icon":"http:\/\/67.195.15.27\/om\/image
?
appid=6ae32cgp68pb6&type=icon&v=18","screen_shot":"http:\/\/67.195.15.27\/om\/imag
e?
appid=6ae32cgp68pb6&type=full&v=18","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=6ae32cgp68pb6&type=<!--IMAGE_TYPE-->&v=18","needsAck":true},
{"app":"3aoj66csm8e1m","instance":"3aoj66csm8e1m.3ic1jc8r6cd1k","label":"My
Drive","status":65,"date":1263327103,"version":12,"icon":"http:\/\/67.195.15.27\/o
m\/image?
appid=3aoj66csm8e1m&type=icon&v=12","screen_shot":"http:\/\/67.195.15.27\/om\/imag
e?
appid=3aoj66csm8e1m&type=full&v=12","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=3aoj66csm8e1m&type=<!--IMAGE_TYPE-->&v=12","needsAck":true},
{"app":"36dhk6gp34pb6","instance":"36dhk6gp34pb6.64c1oc5hjacpl","label":"My
Photos","status":65,"date":1263327103,"version":26,"icon":"http:\/\/67.195.15.27\/
om\/image?
appid=36dhk6gp34pb6&type=icon&v=26","screen_shot":"http:\/\/67.195.15.27\/om\/imag
e?
appid=36dhk6gp34pb6&type=full&v=26","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=36dhk6gp34pb6&type=<!--IMAGE_TYPE-->&v=26","needsAck":true},
{"app":"3ee9ocphm2cb4","instance":"3ee9ocphm2cb4.34cpkcdh3idpo","label":"PayPal","
status":65,"date":1263327103,"version":12,"icon":"http:\/\/67.195.15.27\/om\/image
?
appid=3ee9ocphm2cb4&type=icon&v=12","screen_shot":"http:\/\/67.195.15.27\/om\/imag
e?
appid=3ee9ocphm2cb4&type=full&v=12","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=3ee9ocphm2cb4&type=<!--IMAGE_TYPE-->&v=12","needsAck":true},
{"app":"38dr66cq3cdb1","instance":"38dr66cq3cdb1.34dpo75hm2ob1","label":"pingg
Invitations","status":65,"date":1263327103,"version":8,"icon":"http:\/\/67.195.15.
27\/om\/image?
appid=38dr66cq3cdb1&type=icon&v=8","screen_shot":"http:\/\/67.195.15.27\/om\/image
?appid=38dr66cq3cdb1&type=full&v=8","image_url":"http:\/\/67.195.15.27\/om\/image?
appid=38dr66cq3cdb1&type=<!--IMAGE_TYPE-->&v=8","needsAck":true}];
//-->
</script>
<script type="text/javascript">
(function CGLaunch_Step15() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting OpenMail application list';


parseLaunchJSON("openMailSetup", "Failed running JS to setup
OpenMail", "Failed getting OpenMail setup dom node");
window.LAUNCH_ERR_MSG = '';

}());

(function() {
var e;
try {
gLaunchProfile.start("-RenderBody");
} catch (e) { e = null; }
}());
</script>

</head>
<body class="colorC6">
<span style="position:absolute;left:-5000px;"> Attention screen reader
users, for better experience with a screen reader and Yahoo! mail, we recommend
that you switch to Classic Mail by clicking on the link below: <a href="#"
onclick="YAHOO.mail.Command.exec('switch_to_classic')"> Mail Classic</a></span>
<h1 class="offScreen">Yahoo! Mail</h1>
<span style="position:absolute; top:-9999px; left:-9999px; visibility:
hidden;"><nobr id="widthTester"></nobr></span>
<xml id="launchData"><SOAP-ENV:Envelope xmlns:SOAP-
ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-
ENV:Body><BatchExecuteResponse><response
success="true"><GetUserDataResponse><data><userFeaturePref><silo>111809</silo><mai
lRegTime>1251263069.0</mailRegTime><mailForward/><hasAddressGuard>false</hasAddres
sGuard><intl>us</intl><governingJurisdiction>us</governingJurisdiction><hasMailPlu
s>false</hasMailPlus><hasStationery>false</hasStationery><hasAds>true</hasAds><ymv
m/><mailboxQuota>322122547200</mailboxQuota><mailboxQuotaMegabytes>307200</mailbox
QuotaMegabytes><quotaUsed>67253097</quotaUsed><quotaUsedMegabytes>64.137551307678<
/quotaUsedMegabytes><soundNewMail/><mailCheckInterval>1</mailCheckInterval><partne
rType/><partnerName>Yahoo!
</partnerName><attachFiles>50</attachFiles><attachFileSize>26214400</attachFileSiz
e><attachTotalSize>26214400</attachTotalSize><attachTotalEncodedSize>34865152</att
achTotalEncodedSize><isPremium>false</isPremium><hasArchiving>false</hasArchiving>
<hasForwarding>false</hasForwarding><filtersMax>100</filtersMax><mobileFiltersMax>
100</mobileFiltersMax><isMaster>false</isMaster><btTier/><rogersTier/><isUpsellEna
bled>true</isUpsellEnabled><bulkAction>0</bulkAction><optInState>2</optInState><do
mainMembership/><timezone name=""
fullname=""/></userFeaturePref><userUIPref><composeFontFamily>verdana, helvetica,
sans-
serif</composeFontFamily><composeFontSize>10</composeFontSize><defaultSortOrder>do
wn</defaultSortOrder><useRichText>dynamic</useRichText><imageBlocking>b</imageBloc
king><msgPaneVisible>false</msgPaneVisible><showTo>false</showTo><newsCategory/><s
howCalendarStrip>false</showCalendarStrip><goOnMessageDelete>msg</goOnMessageDelet
e><messagesPerPage>25</messagesPerPage><showSnippets>true</showSnippets><showNoise
>false</showNoise><searchPromo>false</searchPromo><pimBeta/><pimColor>blue</pimCol
or><pimTheme/><language>en-
US</language></userUIPref><userSpamPref><spamGuardPlusEnabled>false</spamGuardPlus
Enabled><spamFilterActive>true</spamFilterActive><spamMoveToInbox>false</spamMoveT
oInbox><spamCleanupPeriod>0</spamCleanupPeriod><spamBlockSender>false</spamBlockSe
nder></userSpamPref><userVacationPref><vacationResponseOn>false</vacationResponseO
n><vacationResponseSubject/><vacationResponseText/><vacationResponseDomain0/><vaca
tionResponseDomain1/><vacationResponseStartDate/><vacationResponseEndDate/><vacati
onAddressBookOnly>false</vacationAddressBookOnly></userVacationPref><userSendPref>
<firstName>First NameMichael
Lyn</firstName><lastName>Dana</lastName><defaultID>michaelyndana@yahoo.com</defaul
tID><loggedInAlias>michaelyndana</loggedInAlias><defaultFromName>First NameMichael
Lyn
Dana</defaultFromName><defaultFromAddress>michaelyndana@yahoo.com</defaultFromAddr
ess><defaultReplyToAddress/><canSendFromPopAcct>true</canSendFromPopAcct><showCcBc
c>hide</showCcBcc><includeMsgOnReply>short</includeMsgOnReply><signatureActive>fal
se</signatureActive><signatureText/><richTextSignature>plain</richTextSignature><a
ddUnknownContact>unspecified</addUnknownContact><autosaveOnSend>yes</autosaveOnSen
d></userSendPref><userPopPref><hasPOP>false</hasPOP><popNoBulk>false</popNoBulk><p
opBulkSubjectPrefix>false</popBulkSubjectPrefix><popSetupEligible>false</popSetupE
ligible></userPopPref><externalAccounts extAccountsTotal="0"/><disposableAddresses
deaNamesTotal="0"/><aliases aliasesTotal="0"/><otherYahooMboxes
otherYahooMboxesTotal="0"/><blockedAddresses blockedAddressesTotal="1"
blockedAddressesMax="500"><blockedAddress/></blockedAddresses><switches><noFormWar
ning>false</noFormWarning></switches><parentalControls><isActive>false</isActive><
mailAccessAllowed>true</mailAccessAllowed><restrictInbound>false</restrictInbound>
<restrictOutbound>false</restrictOutbound><attachmentsAllowed>true</attachmentsAll
owed><historyEnabled>false</historyEnabled><messengerAccessAllowed>true</messenger
AccessAllowed></parentalControls><filters><filtersMax>100</filtersMax><mobileFilte
rsMax>100</mobileFiltersMax><numberOfFilters>0</numberOfFilters><numberOfMailFilte
rs>0</numberOfMailFilters><numberOfMobileFilters>0</numberOfMobileFilters></filter
s></data></GetUserDataResponse></response><response
success="true"><GetMetaDataResponse><meta name="cs" value="yes"/><meta
name="ympref"><meta name="seenNewUserTour" value="1"/><meta
name="seenHideSkyAdTip" value="1"/><meta name="seenMailUpgradeTip"
value="0"/><meta name="seenSMSTip" value="4"/><meta name="userFoldersExpanded"
value="false"/><meta name="nux"><meta name="sessionKey" value="3"/><meta
name="remindMe" value="1"/><meta name="bartKey" value="1"/><meta name="nueKey"
value="1"/></meta><meta name="om"><meta name="seenCue"
value="1"/></meta></meta><meta name="cg"><meta name="pref"><meta name="im"><meta
name="loginpref" value="12"/><meta name="soundenabled" value="yes"/><meta
name="showCt" value="true"/><meta name="smsenabled" value="1"/><meta
name="blocknotinAB" value="false"/><meta name="enabled" value="1"/><meta
name="homeCountry" value="us"/><meta name="hoverSession" value="5"/><meta
name="hideMsn" value="1"/><meta name="showTs" value="-1"/><meta name="blocklist"
value="jd77az|"/></meta><meta name="stationery"><meta name="useComposeFontSize"
value="-1"/><meta name="useComposeFontFamily" value="-1"/></meta><meta
name="uploader"><meta name="bplusOptIn"
value="false"/></meta></meta></meta></GetMetaDataResponse></response><response
success="true"><ListFoldersResponse><numberOfFolders>6</numberOfFolders><folder
unread="0" total="0" size="0" isSystem="true"><folderInfo fid="%40B%40Bulk"
name="@B@Bulk"/></folder><folder unread="0" total="0" size="0"
isSystem="true"><folderInfo fid="Draft" name="Draft"/></folder><folder unread="1"
total="2" size="15354" isSystem="true"><folderInfo fid="Inbox"
name="Inbox"/><messages><messageInfo mid="1_640_AD4Xw0MAAIxFS0yjdgwaLznhC3s"
toEmail="michaelyndana@yahoo.com" subject="FreeHotPasses: daily content - edition
0112 vol 1" mimeType="text/html" xapparentlyto="michaelyndana@yahoo.com"
receivedDate="1263303661" size="6560"><flags isReplied="0" isFlagged="0"
isRead="0" isDraft="0" isForwarded="0" isHam="0" isSpam="0" hasAttachment="0"
inAddressBook="0"
isRecent="1"/><from><name>FreeHotPasses</name><email>xzcdaily@thedailymag.com</ema
il></from><inboxservices><name>Retro</name><value>Y</value></inboxservices><inboxs
ervices><name>SgrnP</name><value>N</value></inboxservices><inboxservices><name>d_t
</name><value>1263313782</value></inboxservices><inboxservices><name>s_ip</name><v
alue>66.154.104.53</value></inboxservices><inboxservices><name>url</name><value>su
bscriptionemail.com,http://subscriptionemail.com/cgi-
bin/stopM.cgi/XZC_42249195724322/michaelyndana?
num=1,thedailymag.com,http://thedailymag.com/nli/magfx/sup/logo_XZC.jpg,yahoo.com,
mailto:michaelyndana@yahoo.com</value></inboxservices></messageInfo><messageInfo
mid="1_159_AEAWw0MAAQ15S0mXqQPKW0wjTTI" toEmail="michaelyndana@yahoo.com"
subject="i truly miss having around" mimeType="multipart/alternative"
xapparentlyto="michaelyndana@yahoo.com" receivedDate="1263114152"
size="8794"><flags isReplied="0" isFlagged="0" isRead="1" isDraft="0"
isForwarded="0" isHam="0" isSpam="0" hasAttachment="0" inAddressBook="0"
isRecent="1"/><from><name>sam
pena</name><email>samyzhere@yahoo.com</email></from><inboxservices><name>Retro</na
me><value>Y</value></inboxservices><inboxservices><name>SgrnP</name><value>N</valu
e></inboxservices><inboxservices><name>d_t</name><value>1263114152</value></inboxs
ervices><inboxservices><name>s_ip</name><value>69.147.97.46</value></inboxservices
><inboxservices><name>showStationery=</name><value/></inboxservices></messageInfo>
</messages></folder><folder unread="0" total="17" size="67237743"
isSystem="true"><folderInfo fid="Sent" name="Sent"/></folder><folder unread="0"
total="0" size="0" isSystem="true"><folderInfo fid="Trash"
name="Trash"/></folder><folder unread="0" total="0" size="0"
isSystem="false"><folderInfo fid="untitled"
name="untitled"/></folder></ListFoldersResponse></response><response
success="true"><ListMessagesResponse startMid="0" startInfo="0" numMid="2"
numInfo="2" errorCount="0"><folder unread="1" total="2" size="15354"
isSystem="true"><folderInfo fid="Inbox"
name="Inbox"/></folder><mid>1_640_AD4Xw0MAAIxFS0yjdgwaLznhC3s</mid><mid>1_159_AEAW
w0MAAQ15S0mXqQPKW0wjTTI</mid></ListMessagesResponse></response><response
success="true"><GetMboxColoMigrateResponse><migrate>false</migrate></GetMboxColoMi
grateResponse></response></BatchExecuteResponse></SOAP-ENV:Body></SOAP-
ENV:Envelope></xml><xml id="folders"><folders></folders></xml> <div id="fh-
spacer"></div>
<div id="fh" class="fontT2" style="display: inline">
<h2 class="offScreen">Log in and Search Menus</h2>
<!-- header: adserved from HEAD --><style>
.betaLogo, .gaLogo{
width:170px;
height:28px;
}
</style>
<style>
.betaLogo, .gaLogo {
width:170px;
height:28px;
}
#searchbox {
padding:2px;
border:0px none;
}
#searchbox * {
vertical-align:middle;
}
#searchbutton {
text-align:center;
background:#FFECA3
url(http://l.yimg.com/a/i/us/pim/dclient/cg157_18/img/md5/9897ebd853f094791fdab652
bc462ac0_1.png) repeat-x scroll 0 -1175px
border:1px solid #FF9B1A;
height:21px;
font-size:10px;
font-weight:bold;
font-family:Tahoma,Helvetica,Arial,sans-serif;
width:100px;
padding-bottom:1px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
}
#fh .textLink {
color:#545454;
}
.userTools {
position:absolute;
top:13px;
left:190px;
color:#545454;
}
.userTools .headerUser, .userTools span {
margin-top:0px;
}
.headerItem {
margin-right:4px;
border-right:1px solid grey;
padding-right:4px;
}
.headerUser {
cursor:pointer;
white-space:nowrap;
float:left;
}
#hdrArw {
background: transparent
url(http://l.yimg.com/a/i/us/pim/dclient/cg157_18/img/md5/dcd7dde68d92fffc70ed6bb6
1e216629_1.png) no-repeat scroll -581px 6px;
height: 10px;
width: 8px;
padding: 0 0 0 4px;
display:inline;
}
#said {
padding-right:2px;
}
#presenceSelector{
float:left;
position:relative;
}
#presenceSelector table#presenceButton {
display:inline;
position:relative;
top:0px;
}
#presenceSelector table#presenceButton tbody {
vertical-align:baseline;
}
.imIcon {
vertical-align:middle;
}
.imArrow {
vertical-align:middle;
}
#presenceIcon{
margin:0px;
height:14px;
}
#presenceLabel{
margin-top:0px;
}
.prButton .prArrow{
height:8px;
background-position:-581px 3px;
}
#signOutLink {
float:left;
}
#searchField{
border:0px none;
position:relative;
display:inline;
padding:0px;
margin-right:4px;
}
#magIcon {
background:transparent
url(http://l.yimg.com/a/i/us/pim/dclient/cg157_18/img/md5/dcd7dde68d92fffc70ed6bb6
1e216629_1.png) no-repeat scroll -1933px 0;
height:14px;
width:14px;
position:absolute;
top:0px !important;
top:5px;
left:3px;
}
#webSrchInput {
width: 205px;
border:2px solid #B6B6B6;
padding:2px 5px 0px 18px;
font-size:11px;
height:20px;
vertical-align:baseline;
margin:0px;
}
.searchFieldTable{
font-size:11px;
}
#networkLinks {
right:5px;
}
#networklinkscx {
vertical-align:top;
padding-top:7px;
white-space:nowrap;
padding-right:4px;
}
.richassist {
z-index:1000;
}
</style>
<div class=betaLogo id=_test_betalogo onclick="_CD('about',event);"></div>
<div class="userTools fontT2">
<div class="headerUser headerItem"><span id="nheaderMenu"
onclick="_CD('menu:showuhmenu',null,null,['said', 'universalHeaderMenu'])"><span
class="headerUsername"><b id=said>Hi, First NameMichael Lyn</b><div
id="hdrArw">&nbsp;</div></span></span></div><span id="presenceSelector"
class="headerItem"></span><span id="signOutLink"><a class="textLink"
id=_test_sign_out onclick="_CD ('exit')" title="Sign out of the Yahoo! network"
hideFocus="true">Sign Out</a></span></div>
<form style="margin:0px;padding:0px" id="headerForm"
action="http://search.yahoo.com/search" target="_blank"
onsubmit="document.getElementById('p').value=document.getElementById('webSrchInput
').value;"><table cellpadding="0" class="searchFieldTable"
id="networkLinks"><tbody>
<tr><td id="networklinkscx" align=right><a
href="http://us.ard.yahoo.com/SIG=15m5ithfp/M=289534.7827405.8677080.7447812/D=mai
l/S=971800348:HEAD/Y=YAHOO/EXP=1263334304/L=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7
ti/B=Vh1iB0PDBos-/J=1263327104110696/K=EkpnK2MjYLA3KBGcLdi3IQ/A=3227474/R=0/SIG=10
mgpruen/*http://www.yahoo.com" id=_test_yahoo target="_blank" hideFocus="true"
class="textLink headerItem" title="Yahoo!">Yahoo!</a><a
href="http://us.ard.yahoo.com/SIG=15m5ithfp/M=289534.7827405.8677080.7447812/D=mai
l/S=971800348:HEAD/Y=YAHOO/EXP=1263334304/L=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7
ti/B=Vh1iB0PDBos-/J=1263327104110696/K=EkpnK2MjYLA3KBGcLdi3IQ/A=3227474/R=1/SIG=10
l2nj3k8/*http://my.yahoo.com" id=_test_my_yahoo target="_blank" hideFocus="true"
class="textLink" title="My Yahoo!">My Yahoo!</a></td>
<td>
<div id="searchField" role="application">
<div id="magIcon"></div>
<input type="text" maxlength="100" size="25" class="inputField webSearchField"
name="webSrchInput" id="webSrchInput">
</div>
</td>
<td>
<button name="searchbutton" id="searchbutton" class="searchboxbg2" value="WEB
SEARCH" type="submit">Web Search</button>
</td>
</tr></tbody></table>
<input type="hidden" name="ei" id="ei" value="UTF-8">
<input type="hidden" name="fr" id="fr_code" value="ush-mailc">
<input type="hidden" name="p" id="p" value="">
</form>
<div id="universalHeaderMenu" class="yuimenu"
style="position:absolute;visibility:hidden; z-index:100;">
<div class="bd"><ul class="uHdr"><li class="yuimenuitem"><a
href="http://us.ard.yahoo.com/SIG=15m5ithfp/M=289534.7827405.8677080.7447812/D=mai
l/S=971800348:HEAD/Y=YAHOO/EXP=1263334304/L=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7
ti/B=Vh1iB0PDBos-/J=1263327104110696/K=EkpnK2MjYLA3KBGcLdi3IQ/A=3227474/R=2/SIG=10
so08guo/*http://profiles.yahoo.com/" target="_blank">Profile</a></li><li
class="yuimenuitem"><a
href="http://us.ard.yahoo.com/SIG=15m5ithfp/M=289534.7827405.8677080.7447812/D=mai
l/S=971800348:HEAD/Y=YAHOO/EXP=1263334304/L=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7
ti/B=Vh1iB0PDBos-/J=1263327104110696/K=EkpnK2MjYLA3KBGcLdi3IQ/A=3227474/R=3/SIG=11
8m32g8k/*http://profiles.yahoo.com/contacts.php"
target="_blank">Contacts</a></li><li class="yuimenuitem"><a
href="http://us.ard.yahoo.com/SIG=15m5ithfp/M=289534.7827405.8677080.7447812/D=mai
l/S=971800348:HEAD/Y=YAHOO/EXP=1263334304/L=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7
ti/B=Vh1iB0PDBos-/J=1263327104110696/K=EkpnK2MjYLA3KBGcLdi3IQ/A=3227474/R=4/SIG=12
8933vhh/*http://edit.yahoo.com/config/eval_profile?.done=http://mail.yahoo.com/"
target="_blank">Account Info</a></li></ul><div class="headerArea"><div
class="headerSection"><span>You are signed in as:</span></div><div
class="headerSection"><span><b>michaelyndana</b></span></div></div></div></div>
<!-- SpaceID=971800348 loc=FSRVY noad -->
<script language=javascript>
if(window.yzq_d==null)window.yzq_d=new Object();
window.yzq_d['WR1iB0PDBos-']='&U=12dmm9512%2fN%3dWR1iB0PDBos-%2fC%3d-1%2fD%3dFSRVY
%2fB%3d-1%2fV%3d0';
</script><noscript><img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?
P=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7ti&T=16pnrcv0n%2fX%3d1263327104%2fE
%3d971800348%2fR%3dmail%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO%2fF%3d338724643%2fH
%3dY29udGVudD0idGVudXJlOiB3ZWVrIDE0LTtub19leHBhbmRhYmxlO2FqYXhfY2VydF9leHBhbmRhYmx
lIg--%2fQ%3d-1%2fI%3d1%2fS%3d1%2fJ%3d3A1A8962&U=12dmm9512%2fN%3dWR1iB0PDBos-%2fC
%3d-1%2fD%3dFSRVY%2fB%3d-1%2fV%3d0"></noscript><script language=javascript>
if(window.yzq_d==null)window.yzq_d=new Object();
window.yzq_d['Vh1iB0PDBos-']='&U=13d1unhin%2fN%3dVh1iB0PDBos-%2fC
%3d289534.7827405.8677080.7447812%2fD%3dHEAD%2fB%3d3227474%2fV%3d1';
</script><noscript><img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?
P=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7ti&T=16q2rrkv4%2fX%3d1263327104%2fE
%3d971800348%2fR%3dmail%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO%2fF%3d3756028907%2fH
%3dY29udGVudD0idGVudXJlOiB3ZWVrIDE0LTtub19leHBhbmRhYmxlO2FqYXhfY2VydF9leHBhbmRhYmx
lIg--%2fQ%3d-1%2fI%3d1%2fS%3d1%2fJ%3d3A1A8962&U=13d1unhin%2fN%3dVh1iB0PDBos-%2fC
%3d289534.7827405.8677080.7447812%2fD%3dHEAD%2fB%3d3227474%2fV%3d1"></noscript>
<script language="JavaScript">
var switchBackLink = elt("_test_switch_back");
if ( switchBackLink && (switchBackLink.href.search(/troubleLoading/g)
== -1) ) {
switchBackLink.href = "troubleLoading?" + (window.gCgUrlExtras ?
window.gCgUrlExtras : '');
switchBackLink.onclick = "javascript:void(0);";
switchBackLink.innerHTML = "Trouble logging in?";
switchBackLink.title = "Trouble logging in?";
}
// bug 2399486 - for test users remove the switch back link in header

//[bug 2356022] For US free accounts with bizmail, we need to replace "What's new"
with "My Account"
(function brph_cg() {
var r, m, wn;
var bIsIE = false, ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('msie')!=-1){bIsIE=true;}
r = /MboxesTotal\s*\=\s*\"[1-9]+\"/;
m = document.getElementById(bIsIE ? "launchData" : "launchDataCache");
if (!m || (m && !m.text)) {return;}
m = m.text;
if(m.search(r) != -1){
wn = document.getElementById("_test_whats_new");
if (wn) {
wn.setAttribute("href",
"http://edit.yahoo.com/config/eval_profile?.done=http://mail.yahoo.com/");
wn.setAttribute("title", "Modify your Yahoo! account information");
wn.setAttribute("id", "_test_my_account");
wn.innerHTML = "Account Info";
}
}})();
</script>

</div>

<script language="JavaScript">

(function CGLaunch_Step16() {
var e;

window.LAUNCH_ERR_MSG = 'Failed setting up prefetch vs. postfetch


promos';
kPartner.prefetchedAds = false;
kPartner.pfa = "";

window.LAUNCH_ERR_MSG = '';
}());

function CGLaunch_Step18() {
var e, initHTML = new Array(8);

window.LAUNCH_ERR_MSG = 'Failed calling setupInit for CG render';


gLaunchProfile.start("--RenderLaunch");
gLaunchProfile.start("---setupinit");
setupInit();
window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed getting init loading dialog for CG render';
initHTML[0] = getInitLoadingDialog();
window.LAUNCH_ERR_MSG = '';
initHTML[1] = "";

window.LAUNCH_ERR_MSG = 'Failed getting main init folder pane for CG


render';
initHTML[2] = getInitFolderPane();

window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed getting main init tab bar for CG render';

initHTML[3] = getInitTabBar();

window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed getting main init home tab for CG render';
initHTML[4] = getInitHomeTab();

window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed getting main init folder pane for CG render';

initHTML[5] = getInitMainTab();

window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed getting main init calstrip for CG render';
initHTML[6] = getInitCalstrip();
window.LAUNCH_ERR_MSG = '';
try {
gLaunchProfile.stop("---setupinit");
gLaunchProfile.start("---TemplWrite");
} catch (e) { e = null; }
return initHTML.join("");
}
window.LAUNCH_ERR_MSG = 'Failed setting up init html';
var MAIN_CG_HTML = CGLaunch_Step18();
window.LAUNCH_ERR_MSG = '';
window.LAUNCH_ERR_MSG = 'Failed calling fixupLaunchUi for CG render';
document.write(MAIN_CG_HTML);
fixupLaunchUi();
if (kPartner.showMessageTab || !(!kPartner.pr ||
kPartner.showWelcomePage)) {
fixupInitPTV();
}
window.LAUNCH_ERR_MSG = '';
</script>
<script language="JavaScript">
(function() {
var e;
try {
gLaunchProfile.stop("---TemplWrite");
gLaunchProfile.start("---initLaunch");
} catch (e) { e = null; }
}());
(function CGLaunch_Step20() {
var e;
window.LAUNCH_ERR_MSG = 'Calling attachFolderNodesToFolders or
initLaunch failed';
attachFolderNodesToFolders();
initLaunch();
window.LAUNCH_ERR_MSG = '';
}());
(function() {
var e;
try {
gLaunchProfile.stop("---initLaunch");
gLaunchProfile.stop("--RenderLaunch");
gLaunchProfile.start("--RenderOther");
} catch (e) { e = null; }
}());
</script>

<div align="center" id="busyLoadingWidget"


class="loginBusyLoading"><div id="pgb">
<noscript><style>#mainContent { display:none; } </style><div id="noscript"
align="center"><p>&nbsp;</p><div align="left" class="primaryHeading">You need to
have Javascript enabled in order to use the all-new Yahoo! Mail.<div
class="primaryBodyText"><br />Please enable Javascript for your browser, or you
can proceed to a <a href='/ym/BetaSwitcher?
YY=31668&switch=1&src=beta&dest=current&nof=1'>non-JavaScript version of Yahoo!
Mail</a> with limited functionality.</div></div><br /><div align='left'
class='subHeading'>To enable Javascript in Internet Explorer 5.5 or higher...<ol
class='primaryBodyText'><li>Click <i>Tools</i>, then click <i>Internet
Options</i>.</li><li>Click the <i>Security</i> tab.</li><li>Click the <i>Custom
Level</i> button.</li><li>Scroll to the <i>Scripting</i> section. </li><li>Check
<i>Enable</i> under <i>Active scripting</i>, <i>Allow paste operations via
script</i>, and <i>Scripting of Java applets</i>.</li><li>Click the <i>OK</i>
button.</li></ol></div><div align="left" class="subHeading">After enabling
Javascript...</div><div align="left"
class="primaryBodyText">&nbsp;&nbsp;&nbsp;&nbsp;you can <a class=""
href="http://mail.yahoo.com">return to the Yahoo! Mail log-in page.</a></div><div
align="left" class="subHeading">or...</div><div align="left"
class="primaryBodyText">&nbsp;&nbsp;&nbsp;&nbsp;you can <a
href='http://us.mc1118.mail.yahoo.com/mc/login?ymv=0&YY=107094'>proceed directly
to Yahoo! Mail Classic </a></div></div></div></noscript> <script
language="JavaScript">
(function() {
var e;
try {
gLaunchProfile.stop("--RenderOther");
gLaunchProfile.stop("-RenderBody");
gLaunchProfile.start("-ImageCaching");
} catch (e) { e = null; }
}());
</script>

<div id="cacheDiv" style="position:absolute; overflow:hidden;


width:1px; height:1px; visibility:hidden;">

<img
src="http://l.yimg.com/a/i/us/pim/dclient/cg240_3/img/md5/709bf32a73edef7cbe5d4a77
0292bc09_1.png">
<img
src="http://l.yimg.com/a/i/us/pim/dclient/cg240_3/img/md5/9897ebd853f094791fdab652
bc462ac0_1.png">
</div>
</div>
</div><iframe id="honkerIframe" name="honkerIframe" class="hiddenIframe"
tabindex="-1" hidefocus="true" allowtransparency="true" frameborder="0"></iframe>
<script language="JavaScript">
(function() {
var e;
try {
gLaunchProfile.stop("-ImageCaching");
gLaunchProfile.start("-RenderIframes");
} catch (e) { e = null; }
}());
</script>
<h2 class="offScreen">Message Content</h2>
<div id="largePane" class="lpane pane largeMessagingPane" style="top:-
50000px;left:-50000px">
<iframe id="largeFrame" frameborder=0 marginwidth="0" marginheight="0"
hspace="0" vspace="0" allowTransparency="true" class="largeMessaging lpane"
name="largeMessaging" style="width:160px; height: 620px"></iframe>
</div>
<iframe id="mailoptions" class="hiddenIframe" frameborder="0" marginwidth="0"
marginheight="0" hspace="0" vspace="0" style="background-
color:#F4F5EB;border:none; padding: 0px;"></iframe>
<div id="emptyFolderView" class="pane emptyFolderView colorK3">
<div class="welcomeGap" style="FONT-SIZE: 0px; OVERFLOW: hidden; WIDTH:
100%; HEIGHT: 9px"></div>
<table cellspacing=0 cellpadding=0 border=0>
<tbody>
<tr>
<td valign="top">
<div id="emptyFolderNote" class="emptyFolderNote
colorK3 colorC6 fontT0"></div>
<div id="emptyFolderSpecialNote"
class="emptyFolderSpecialNote colorK3 fontT2"></div>
</td>
<td align='center' valign='top'>
<div id=emptyFolderContainer>
<span
class="cg_ad_slug">ADVERTISEMENT</span><br />
<iframe
id="emptyFolderFrame" frameborder=0 marginwidth="0" marginheight="0" hspace="0"
vspace="0" allowTransparency="true" class="emptyFolderFrame"
name="emptyFolderFrame"></iframe>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<img src="http://ad.yieldmanager.com/pixel?id=117614&t=2" width="1" height="1"
/><script language=javascript>
if(window.yzq_d==null)window.yzq_d=new Object();
window.yzq_d['WB1iB0PDBos-']='&U=13f0u7arv%2fN%3dWB1iB0PDBos-%2fC
%3d624324.13069976.13267326.12549985%2fD%3dSIP%2fB%3d5412684%2fV%3d1';
</script><noscript><img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?
P=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7ti&T=16plr58k2%2fX%3d1263327104%2fE
%3d971800348%2fR%3dmail%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO%2fF%3d865940757%2fH
%3dY29udGVudD0idGVudXJlOiB3ZWVrIDE0LTtub19leHBhbmRhYmxlO2FqYXhfY2VydF9leHBhbmRhYmx
lIg--%2fQ%3d-1%2fI%3d1%2fS%3d1%2fJ%3d3A1A8962&U=13f0u7arv%2fN%3dWB1iB0PDBos-%2fC
%3d624324.13069976.13267326.12549985%2fD%3dSIP%2fB%3d5412684%2fV
%3d1"></noscript><iframe id="historyFrame" name="historyFrame"
class="hiddenIframe" src="blank.html?bn=240.3&.intl=us&lang=en-US"
frameborder=0></iframe>
<iframe id="reloginFrame" class="reloginFrame colorK3" frameborder=0
style="display:none"></iframe>

<script language="JavaScript" type="text/javascript">


(function() {
var e;
try {
gLaunchProfile.stop("-RenderIframes");
gLaunchProfile.start("-Onload");
} catch (e) { e = null; }
}());
(function CGLaunch_Step21() {
var e;
window.LAUNCH_ERR_MSG = 'Failed setting no ads vars for kPartner';
if(window.kPartner) {
kPartner['extAds'] =
kPartner['isRU'] = false;
}
window.LAUNCH_ERR_MSG = '';
}());

(function() {
var e;
try {

gLaunchProfile._timers["LaunchPhpTime"]=new Timer();
gLaunchProfile._timers["LaunchPhpTime"].total=878;
gLaunchProfile._timers["-
includeFiles"]=new Timer();
gLaunchProfile._timers["-includeFiles"].total=7;
gLaunchProfile._timers["-
launchRedirects"]=new Timer();
gLaunchProfile._timers["-launchRedirects"].total=6;
gLaunchProfile._timers["-
launchCgConf"]=new Timer();
gLaunchProfile._timers["-launchCgConf"].total=0;
gLaunchProfile._timers["-
omPhpInit"]=new Timer();
gLaunchProfile._timers["-omPhpInit"].total=0;
gLaunchProfile._timers["-
galaxyPhpTime"]=new Timer();
gLaunchProfile._timers["-galaxyPhpTime"].total=817;
gLaunchProfile._timers["--
galaxyIncludes"]=new Timer();
gLaunchProfile._timers["--galaxyIncludes"].total=5;
gLaunchProfile._timers["--
includeStringFiles"]=new Timer();
gLaunchProfile._timers["--includeStringFiles"].total=0;
gLaunchProfile._timers["--
includeUlmFiles"]=new Timer();
gLaunchProfile._timers["--includeUlmFiles"].total=2;
gLaunchProfile._timers["--
getUserLocationInfo"]=new Timer();
gLaunchProfile._timers["--getUserLocationInfo"].total=433;
gLaunchProfile._timers["--
setupPreload"]=new Timer();
gLaunchProfile._timers["--setupPreload"].total=6;
gLaunchProfile._timers["--
executePreload"]=new Timer();
gLaunchProfile._timers["--executePreload"].total=311;
gLaunchProfile._timers["--
getExtendedProfiles"]=new Timer();
gLaunchProfile._timers["--getExtendedProfiles"].total=0;
gLaunchProfile._timers["--
getJSON"]=new Timer();
gLaunchProfile._timers["--getJSON"].total=51;
gLaunchProfile._timers["--
getSpaceId"]=new Timer();
gLaunchProfile._timers["--getSpaceId"].total=0;
gLaunchProfile._timers["--
getJsDataStructure"]=new Timer();
gLaunchProfile._timers["--getJsDataStructure"].total=3;
gLaunchProfile._timers["--
isOverrideInternalUser"]=new Timer();
gLaunchProfile._timers["--isOverrideInternalUser"].total=0;
gLaunchProfile._timers["-
setYinCookie"]=new Timer();
gLaunchProfile._timers["-setYinCookie"].total=2;
gLaunchProfile._timers["-
PhpKPartner"]=new Timer();
gLaunchProfile._timers["-PhpKPartner"].total=4;
gLaunchProfile._timers["-
getOpenAppList"]=new Timer();
gLaunchProfile._timers["-getOpenAppList"].total=1;
gLaunchProfile._timers["-
getLaunchData"]=new Timer();
gLaunchProfile._timers["-getLaunchData"].total=2;
gLaunchProfile._timers["-
includeWelcome"]=new Timer();
gLaunchProfile._timers["-includeWelcome"].total=0;
gLaunchProfile._timers["-
includeAds"]=new Timer();
gLaunchProfile._timers["-includeAds"].total=30;
gLaunchProfile._timers["-
ulmGetLocation"]=new Timer();
gLaunchProfile._timers["-ulmGetLocation"].total=0;
gLaunchProfile._timers["-
writeUH2"]=new Timer();
gLaunchProfile._timers["-writeUH2"].total=0;
} catch (e) { e = null; }
}());

</script>
<script language="VBScript">
Sub ExecuteVBS (S)
On Error Resume Next

ExecuteGlobal S

On Error GoTo 0
End Sub
</script>

<div id="themeContainer1"><span></span></div>
<div id="themeContainer2"><span></span></div>
<div id="themeContainer3"><span></span></div>
<div id="themeContainer4"><span></span></div>
<div id="themeContainer5"><span></span></div>

<script type="text/javascript" id="startCG">


(function CGLaunch_Step23() {
var e;
window.LAUNCH_ERR_MSG = 'Failed calling startUp at bottom of page';
startUp();
window.LAUNCH_ERR_MSG = '';
}());
</script>
</body>
</html>
<!-- Version 2.5.0 build:240.3 - built on 11/19/2009 05:45 PM -->
<script language=javascript>
if(window.yzq_p==null)document.write("<scr"+"ipt language=javascript
src=http://l.yimg.com/d/lib/bc/bc_2.0.4.js></scr"+"ipt>");
</script><script language=javascript>
if(window.yzq_p)yzq_p('P=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7ti&T=16lv9k96h%2fX
%3d1263327104%2fE%3d971800348%2fR%3dmail%2fK%3d5%2fV%3d1.1%2fW%3dJ%2fY%3dYAHOO%2fF
%3d1152995481%2fH
%3dY29udGVudD0idGVudXJlOiB3ZWVrIDE0LTtub19leHBhbmRhYmxlO2FqYXhfY2VydF9leHBhbmRhYmx
lIg--%2fI%3d1%2fS%3d1%2fJ%3d3A1A8962');
if(window.yzq_s)yzq_s();
</script><noscript><img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?
P=rtBe3WKJGnxjqpTNS0T0YwD8rhERO0tM138AA7ti&T=16qat54di%2fX%3d1263327104%2fE
%3d971800348%2fR%3dmail%2fK%3d5%2fV%3d3.1%2fW%3dJ%2fY%3dYAHOO%2fF%3d3669270640%2fH
%3dY29udGVudD0idGVudXJlOiB3ZWVrIDE0LTtub19leHBhbmRhYmxlO2FqYXhfY2VydF9leHBhbmRhYmx
lIg--%2fQ%3d-1%2fI%3d1%2fS%3d1%2fJ%3d3A1A8962"></noscript>
<!-- cg9.c4.mail.gq1.yahoo.com compressed/chunked Tue Jan 12 12:11:43 PST 2010 -->

Você também pode gostar