function clearCombobox(cbo)
{
	cbo.options.length = 0;
}
function addComboboxItem(cbo,strKey,strValue)
{
	var x = cbo.options.length;
	cbo.options[x] = new Option(strValue,strKey);
}
function isArray(obj) 
{
		if(obj.constructor.indexOf("HTMLSelectElement") > 0)
		{
			
			return false;
		}	

	return true;

}
