/** ---------------------------------------------------------------------------------
 * リストの印刷機能
 */

function printContents(cssfile) {
	if (self.name == "print_style") {
		document.getElementById('cssId').href = "/common/style/"+cssfile;
		window.print();
	}
}

function openNewWindow(){
	w = window.open(location,"print_style");
}
