function openWinCenter(url,name,x,y){
	posx = (screen.width - x) / 2;
	posy = (screen.height - y - 140) / 2;
	win = window.open(url,name,'"directories=no,menubar=no,location=no,toolbar=no,scrollbars=yes,width='+x+',height='+y+',left='+posx+',top='+posy+'"');
	//win.name = name;
	win.focus();
}
function openWinCenter2(url,name,x,y){
	posx = (screen.width - x) / 2;
	posy = (screen.height - y - 140) / 2;
	win = window.open(url,name,'"directories=no,menubar=no,location=no,toolbar=yes,scrollbars=yes,width='+x+',height='+y+',left='+posx+',top='+posy+'"');
	//win.name = name;
	win.focus();
}

function putSettings() {
 with ( factory.printing ) {
   header = "";        // Header
   footer = "";        // footer
   portrait = false;        // 用紙の向き(true:縦/false:横)
   leftMargin = 0;        // 余白　左
   topMargin = 0;        // 余白　上
   rightMargin = 0;        // 余白　右
   bottomMargin = 0;        // 余白　下
 }}
function print(){
 if(document.layers){
             // ページ設定
 window.print();
 }
 else{if(document.all){
   putSettings() // set settings  // print and get settings when done
   factory.printing.Print(false, window);
 }}
 value=print;
}
