function funBlockUI(strDivID)
{
	$.blockUI({
		message: $('#' + strDivID), 
		css: {
			width: '250px',
			border: 'none', 
			backgroundColor: '#000',
			opacity: '.75',
			cursor: 'default'
		}
	});
}

function funUnBlockUI(strDivID)
{
	 $.unblockUI(); 
            return false; 

}