get = new Array;


function PrintPage(){

	window.print(); 

	
}

//オブジェクト表示
function ShowObj(id){
	bElements = document.getElementById(id);
	if(bElements != null){
		bElements.style.display = 'block';
	}
}

//オブジェクト非表示
function HideObj(id){
	bElements = document.getElementById(id);
	if(bElements != null){
		bElements.style.display = 'none';
	}
}

function Color(boxID){
	bElements = document.getElementById(boxID);
	if(bElements != null){
		bElements.style.backgroundColor = '#ffffff';
	}
}

function Margin(boxID){
	bElements = document.getElementById(boxID);
	if(bElements != null){
		bElements.style.margin = '0px';
	}
}
