﻿function search_button_click() {
	//alert('clicked');
}

function copylrc() {
	var $site_link = '<a href="http://www.chlyrics.net/">中文歌詞</a>';
	try {
		var $input = document.createElement("textarea");
		$input.value = '' +
			document.getElementById("lrc").childNodes[0].nodeValue
			+ '\n\n' + $site_link;
		$input.select(); $input.focus();
		var $select = $input.createTextRange();
		$select.execCommand("RemoveFormat");
		$select.execCommand("Copy");
		alert("完成複製");
	} catch (e) {}
}

function init() {
	try {
	document.getElementById('search_button').onclick = search_button_click;
	} catch(e) {}
}

try {
onload = init;
} catch(e) {}