//////////////////////////////////////////////////
// print javascript ver 1.0
// requirements:
//     none
// DH Graduate Products "Kono Taro TEAM."
// www.taro.org
//////////////////////////////////////////////////

function print_out() {
   /* over IE5,NN4 */
   if (navigator.userAgent.match(/msie (\d)/i))
      v = (eval(RegExp.$1) >= 5) ? 1 : 0;
   else if (self.innerWidth)
      v = (eval(navigator.appVersion.charAt(0)) >= 4) ? 1 : 0;
   else v = 0;

   if (v) self.print();
   else alert("お使いのブラウザではこの機能は利用できません");
}
