// Copyright 2010 by LiveHome


function rules_link(type) {
	
	if (type == 1) {
		rules_link_show()
	} else {
		rules_link_hide()
	}
}

function rules_link_show() {
	document.getElementById("copyright").innerHTML = 'Korzystanie z serwisu oznacza akceptację regulaminu'
}

function rules_link_hide() {
	document.getElementById("copyright").innerHTML = 'Copyright 2010 by LiveHome'
}

function rules_show() {
	window.location.href = "http://livehome.pl/?op=rules"
}

