// JavaScript Document
function clearText(thefield){
if (thefield.value == "關鍵字")
thefield.value = ""
}
function resetText(thefield){
if (thefield.value== "")
thefield.value = "關鍵字"
}

function clearTextArticle(thefield){
	
if (thefield.value == "搜尋文章")
thefield.value = "";

if (thefield.value == "搜尋車主知識庫")
thefield.value = "";

}
function resetTextArticle(thefield){
if (thefield.value== "")
thefield.value = "搜尋文章";
}

function resetTextqna(thefield){
if (thefield.value== "")
thefield.value = "搜尋車主知識庫";
}


function chonfocus(thefield){
thefield.style.backgroundColor='#fffdd7';
thefield.style.color='#000000';
thefield.style.border='1px solid #ffc000';
}
function chonblur(thefield){
thefield.style.backgroundColor='#ffffff';
thefield.style.color='#999999';
thefield.style.border='1px solid #ffffff';
}
function commonfocus(thefield){
thefield.style.backgroundColor='#fffdd7';
thefield.style.color='#000000';
thefield.style.border='1px solid #ffc000';
}
function commonblur(thefield){
thefield.style.backgroundColor='#ffffff';
thefield.style.color='#000000';
thefield.style.border='1px solid #cccccc';
}
function newsover(thefield){
thefield.style.backgroundColor='#ffc000';
thefield.style.color='#000000';
thefield.style.border='1px solid #ffffff';
}
function newsout(thefield){
thefield.style.backgroundColor='#ffffff';
thefield.style.color='#000000';
thefield.style.border='1px solid #cccccc';
}
