// JavaScript Document
function upRentButton ( obj) {
	obj.className = 'rent-button-up'
}

function downRentButton ( obj) {
	obj.className = 'rent-button-down'
}

function upRentButtonElse ( obj, typeButton) {
	obj.className = typeButton + '-up'
}

function downRentButtonElse ( obj, typeButton) {
	obj.className = typeButton + '-down'
}

function goURL( gourl) {
	document.location.href = gourl;
}