﻿<!--
//Copyright (C) 2004 Y&L Interactive Communications Ltd.
//YLIC.com
//cd20070710

function ChangeInput(el,term){
	var i=document.getElementById(el);
	if (i)
	{
		i.value = term;
	}
}
//-->