function seller(theURL,winName,features) { //v2.0
  window.open("http://www.amazon.com/gp/help/seller/home.html?seller="+theURL+"&tag=golf-accessories-club-20",winName,features);
}
function windowp(theURL,url) { //v2.0
if(theURL=="privacy")
{
	var page="http://www.amazon.com/gp/help/customer/display.html/ref=footer_privacy?ie=UTF8&nodeId=468496&tag=golf-accessories-club-20";
}
if(theURL=="help")
{
	var page="http://www.amazon.com/gp/help/customer/display.html/ref=hp_bc_anchor?ie=UTF8&nodeId=508510&tag=golf-accessories-club-20";
}
if(theURL=="image")
{
	var page=url;
}
  window.open(page,'','scrollbars=yes,resizable=yes,width=780,height=600');
}

function Inint_AJAX() {
   try { return new ActiveXObject("Msxml2.XMLHTTP")  } catch(e) {} //IE
   try { return new ActiveXObject("Microsoft.XMLHTTP") } catch(e) {} //IE
   try { return new XMLHttpRequest()          } catch(e) {} //Native Javascript
   alert("XMLHttpRequest not supported")
   return null
}

function loadAmz(url,type, handle, keyword,www,num) {
     document.getElementById(handle).innerHTML='<div align="center""><img src="'+www+'image/ajax-loader.gif"></div>'

     url=url.replace(/&amp;/g, ";")
     url=url.replace(/&/g, ";")
     var req = Inint_AJAX()
     req.onreadystatechange = function () { 
          if (req.readyState==4) {
               if (req.status==200) {
                    document.getElementById(handle).innerHTML=req.responseText
               } 
          } 
     }
     req.open("POST", www+"reader.php?keyword="+keyword+"&type="+type+"&www="+www+"&num="+num, true)
     req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
     req.send("url="+url) //觤

}

