function openRules(rulesName) {
	this.newWindow = '';
	this.rulesName = rulesName;

	if (!newWindow.closed && newWindow.location) {
		this.newWindow.location.href = url;
	} else {
		this.newWindow = window.open('/res/eng/rules/Frameset.html', 'Rules', 'width=500, height=500, location=no, status=no, menubar=no, resizable=yes');
	}
	if(window.focus) {this.newWindow.focus();}
	return false;
}

function initializeRules()
{
	this.newWindow.setRulesName(this.rulesName);
}