function func_click(val, ids, text)
{
	document.getElementById(ids).value = '';
}

function func_blur(val, ids, text)
{
	if(document.getElementById(ids).value == '')
	{
		document.getElementById(ids).value = text;
	}
}

function dropdown_select(dropdownId, str)
{
	document.getElementById('select_'+dropdownId).innerHTML = document.getElementById(dropdownId).value + " " + str; 
}

function dropdown_select_sortby(dropdownId, str)
{
	//document.getElementById('select_'+dropdownId).innerHTML = document.getElementById(dropdownId).value + " " + str; 
}
