/********************************************************************************//* Create  : 2007-01-23/* Modify  : 2007-07-12/* Author  : Fujiwara/********************************************************************************//* ݒ */if(checkIE()) {  window.attachEvent('onload', initRollovers);  window.attachEvent('onload', postCostingForm);}else {  this.addEventListener('load', postCostingForm, false);  this.addEventListener('load', initRollovers, false);}/********************************************************************************/function postCostingForm() {  if(!document.getElementById) return;  var tagAnchors = document.getElementsByTagName('a');  for(var i=0; i<tagAnchors.length; i++) {	    if(tagAnchors[i].className == 'costing') {      var title = tagAnchors[i].getAttribute('title');      tagAnchors[i].setAttribute('onclick', "document.add_cart.name.value='"+title+"'; document.add_cart.submit(); return false;");    }  }  var form = document.getElementsByTagName('body');  form[0].innerHTML +=  '<form name="add_cart" method="POST" action="https://www.nishio-rent.co.jp/tushin/cart/index2.php">'+                                       '<input type="hidden" name="act" value="add">'+                                       '<input type="hidden" name="name" value="'+title+'">'+                                       '</form>';}/********************************************************************************/function checkBrowser() {  var ua = navigator.userAgent;  if(ua.indexOf("Safari") > -1) return "Safari";  if(ua.indexOf("Opera") > -1) return "Opera";  if(ua.indexOf("MSIE") > -1) return "IE";  return "Netscape";}/********************************************************************************/function checkIE() {  return (document.all && document.attachEvent) ? true : false;}