<!--

vTimerSort=setTimeout("",1);

function IM_showSortMenu() {
	clearTimeout(vTimerSort);
	document.getElementById("SortByDD").style.display="block";
}

function IM_hideSortMenu() {
	vFunction = "IM_hideSortMenu2();"
	vTimerSort = eval('setTimeout("' + vFunction + '",500);');
}

function IM_hideSortMenu2() {
	document.getElementById('SortByDD').style.display='none';
	clearTimeout(vTimerSort);
}

//-->


