window.onload = function() {
	
	if(document.getElementById('disclaimer')) {
		document.getElementById('disclaimer').style.visibility = 'visible';
	}
	return true;
}

function approveDisclaimer() {
	if ((document.getElementById('disccond').checked) && (document.getElementById('discloc').checked)) {  
//		window.location.href = 'index.php?id=16&L=1';
		window.location.href = 'investor-relations/welcome.html';
		return true;
	} else {
		alert('Please accept our conditions to enter our IR area.');
		window.location.href = 'investor-relations.html';
		return false;
	}
}