function float_on( div_id ) 
{
	document.all(div_id).style.display = 'block';
	document.all(div_id).style.pixelLeft = window.event.clientX+document.body.scrollLeft;//+window.screenLeft;
	document.all(div_id).style.pixelTop = window.event.clientY+document.body.scrollTop;//+window.screenTop;
}

function float_off( div_id )
{
	document.all(div_id).style.display='none';
}



function isDate(DateToCheck){

if(DateToCheck==""){return true;}

var m_strDate = FormatDate(DateToCheck);

if(m_strDate=="")
{
    return false;
}
var m_arrDate = m_strDate.split("/");
var m_DAY = m_arrDate[0];
var m_MONTH = m_arrDate[1];
var m_YEAR = m_arrDate[2];

if(m_YEAR.length > 4){return false;}

m_strDate = m_MONTH + "/" + m_DAY + "/" + m_YEAR;

var testDate=new Date(m_strDate);
if(testDate.getMonth()+1==m_MONTH)
{
    return true;
} 
else
{
    return false;
}
}