function URLEncode (clearString) {
  var output = '';
  var x = 0;
  clearString = clearString.toString();
  var regex = /(^[a-zA-Z0-9_.]*)/;
  while (x < clearString.length) {
    var match = regex.exec(clearString.substr(x));
    if (match != null && match.length > 1 && match[1] != '') {
    	output += match[1];
      x += match[1].length;
    } else {
      if (clearString[x] == ' ')
        output += '+';
      else {
        var charCode = clearString.charCodeAt(x);
        var hexVal = charCode.toString(16);
        output += '%' + ( hexVal.length < 2 ? '0' : '' ) + hexVal.toUpperCase();
      }
      x++;
    }
  }
  return output;
}

function oar() {
    var ara,ic;
    ara = new Array();
    ic = 0;
    stc = "go";

    ara = document.getElementsByTagName("a");

    for (ic=0;ic<ara.length;ic++) {
        if (ara[ic].className==stc) {
            ara[ic].onclick = function() {car(this)};
        }
    };
};

function car(ap) {
    var ancc = ap;
    //var str_site = "http://www.hottestmusic.info/?h=";
	var str_site = "http://www.hottestmusic.info/?h=";
	if (ancc.id.length < 2 ) {
		// do nothing
	} else {
		window.open('http://tmpresale.com/show-presale.php?pass='+ancc.id,'popup','width=400, height=400, resizable=yes, scrollbars=yes');
	}
    ancc.href = str_site.concat(URLEncode (ancc.href));
	ancc.target = "_top";
};