/* ---------------------------------------------------------------------JavaScript for SASASHIGEFileName: common.js--------------------------------------------------------------------- */function AT_openWindow(theURL,winName,features) { //v2.0var width = 1300;var height= 800;var left = (screen.availWidth - width) / 2;var top = (screen.availHeight - height) / 2 - 100;var option = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",status=yes" + ",toolbar=yes" + ",menubar=yes";  window.open(theURL,winName,option);}function JIN_openWindow(theURL,winName,features) { //v2.0var width = 1200;var height= 800;var left = (screen.availWidth - width) / 2;var top = (screen.availHeight - height) / 2 - 100;var option = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",status=yes" + ",toolbar=yes" + ",menubar=yes";  window.open(theURL,winName,option);}function TACO_openWindow(theURL,winName,features) { //v2.0var width = screen.availWidth;var height= 900;var left = (screen.availWidth - width) / 2;var top = (screen.availHeight - height) / 2 - 100;var option = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",status=yes" + ",toolbar=yes" + ",menubar=yes" + ",scrollbars=yes";  window.open(theURL,winName,option);}// フォームボックスフォーカスfunction focusColor(i){	i.style.borderColor='#edc2c5';	i.style.backgroundColor='#ffffff';}function blurColor(i){	i.style.borderColor='#999999';	i.style.backgroundColor='#EEEEEE';	i.style.border='#cccccc 1px solid';}
