﻿function doLoad() {
	if (!isAuth()) {
		return;
	}

	try {
		document.getElementById('mycareer').style.display = 'block';
		document.getElementById('login').style.display = 'none';
	}
	catch(e) { ; }
	
	try {
		document.getElementById('newResumeCopyBlock').style.display = (document.all?'block':'table-row');
	}
	catch(e) { ; }
}

function doAuth(auth) {
	setcookie("auth", auth?"1":"");
}

function isAuth() {
	return getcookie("auth");
}

try {
	window.addEventListener('load', doLoad, false);
}
catch(e) {
	window.attachEvent('onload', doLoad);
}
