// Copy Link
function Copy(Banner) {
	document.getElementById(Banner).select();
	document.getElementById(Banner).focus();
	if (document.all) {
		textRange = document.getElementById(Banner).createTextRange();
		textRange.execCommand('RemoveFormat');
		textRange.execCommand('Copy');
		alert('ระบบได้ทำการ Copy โค้ดแล้วครับ ท่านสามารถนำไปวางบนเว็บไซต์ของท่านได้เลยครับ!!');
	}
}