	function LinkPass(Parame){
		window.open("http://mugen.matrix.jp/makutsu/shoplink.htm?" + Parame,"ShopLinks");
		return false;
	}


	function AWL(KeyWord){
		var links = '';
		links += '<a href="http://www.amazon.co.jp/gp/search?ie=UTF8&keywords=';
		links += encodeURIComponent(KeyWord);
		links += '&tag=fenghuang1-22&index=blended&linkCode=ur2&camp=247&creative=1211" class="AWL" title="Amazon‚ÅSearch">';
		links += 'For Amazon';
		links += '</a>';
		links += '';
		links += '';
		links += '';
		document.write(links);
		return false;
	}

  function popjumpmenu(selOBJ) {
    window.open(selOBJ.options[selOBJ.selectedIndex].value,"_self");
  }

/*
function popjumpmenu(selOBJ) {
	window.open(selOBJ.options[selOBJ.selectedIndex].value);
}
*/

  function DayTimeWatch(){
    var time = new Date();
    var hour = time.getHours();
    var min = time.getMinutes();
    var sec = time.getSeconds();
    var year = time.getFullYear();
    var month = time.getMonth()+1;
    var date = time.getDate();
    weeks = new Array("(Sun)","(Mon)","(Tue)","(Wed)","(Thu)","(Fri)","(Sta)");
    var wday = weeks[time.getDay()];
      if (hour < 10){
        hour = "0" + hour;
      }
      if (min < 10){
        min = "0" + min;
      }
      if (sec < 10){
        sec = "0" + sec;
      }
      if (month < 10){
        month = "0" + month;
      }
      if (date < 10){
        date = "0" + date;
      }
     document.Watch.watch.value = year + "-" + month + "/" + date + wday + " " + hour +":" + min + ":" + sec;
//     document.Watch.watch.value = year + "-" + month + "/" + date + " " + hour +":" + min + ":" + sec;
     setTimeout("DayTimeWatch()",500);
 }

