﻿/*Note
File này thuộc quyền sở hữu của Lê Văn Phương - konchieng@gmail.com
Bất cứ ai xài lại File này thì vẫn giữ nguyên những thông tin ghi chú này.
Bất cứ ai xài lại File này mà xóa những thông tin ghi chú này thì là con chó ghẻ
///////
This file was copyrighted by Phuong Le Van - konchieng@gmail.com
Anyone using this file again that clear this notes so you are "son of a bitch"
*/
function MouseHover(id,imagePath)
{
	document.getElementById(id).src=imagePath;
	document.getElementById(id).style.cursor="hand";
}
function MouseOut(id,imagePath)
{
	document.getElementById(id).src=imagePath;
	document.getElementById(id).style.cursor="default";
}
function SearchClick(inputID)
{
	var keyword = document.getElementById(inputID).value;
	window.location="SearchEngine.aspx?key="+ keyword +'&lookingfor=title';
}
/*Note
File này thuộc quyền sở hữu của Lê Văn Phương - konchieng@gmail.com
Bất cứ ai xài lại File này thì vẫn giữ nguyên những thông tin ghi chú này.
Bất cứ ai xài lại File này mà xóa những thông tin ghi chú này thì là con chó ghẻ
///////
This file was copyrighted by Phuong Le Van - konchieng@gmail.com
Anyone using this file again that clear this notes so you are "son of a bitch"
*/