function doSearch() {
	keyword = trim(document.getElementById('search').value);
	location.href = 'http://' + _action_url
		+ "?co_id=" + getCoId() + "&request_id=cccito&lev1=&lev2=&lev3=&search=" 
		+ keyword;
}

function doStkNo() {
	stkno = trim(document.getElementById('find_stkno').value);
	location.href = 'http://' + _action_url
		+ "?co_id=" + getCoId() + "&request_id=cccito&lev1=&lev2=&lev3=&stkno=" 
		+ stkno;
	//alert(href);
}
function getCoId() {
	if (window.location.href.indexOf('ecom.opus-is.com/lg/') > 0) return 'CC\\';
	if (window.location.href.indexOf('www.opus-is.com/cc/') > 0) return 'CC\\';
	return 'CC/';
}
function trim(str) {
   return str.replace(/^\s*|\s*$/g,"");
}