function chopstage(id, h) {
	var element;
	var element = document.getElementById(id);
	element.style.height  = h + "px";
	return true;
}

function changePageBGColor(color){
	this.document.body.style.backgroundColor = color; 
}


