// JavaScript Document

function buttonInfo (infoText, dir) {
	var tmpObj;
	tmpObj = document.getElementById('infoLayer2');
	if (tmpObj) tmpObj.style.textAlign = dir;
	tmpObj = document.getElementById(dir+'Arrow');
	if (tmpObj) {
		tmpObj.style.display= infoText ? 'block' : 'none';
	}
	tmpObj = document.getElementById('infoText');
	if (tmpObj) tmpObj.innerHTML = infoText;
}

function openSignup(url) {
	if (window.opener && !window.opener.closed) {
		opener.location.href = url;
	} else {
		window.open(url);
	}
	self.close();
}
