var PopOutTime = "";
function PopUpProfile(mem_id)
{
	if(mem_id != '')
		PopOutTime = setTimeout("ViewProfile('"+mem_id+"')", 500);
	else
		clearTimeout(PopOutTime);
}

function DisablePopProfile()
{
	clearTimeout(PopOutTime);
}


function ViewProfile(id)
{
	document.getElementById('main_div').style.display = "block";
	document.getElementById('myform_div').style.display = "block";
	document.getElementById('myform_div').innerHTML = '<div style="margin:auto; width:74px; height:45px;"><img src="'+SiteName+'/images/loading_bool.gif'+'" style="border:none;" /></div>';
	GetFormData(SiteName+'/getrequests/my_profile.php?id='+id, 'myform_div');
}

function CloseFormCaller()
{
	document.getElementById('myform_div').innerHTML = '';
	document.getElementById('myform_div').style.display = "none";
	document.getElementById('main_div').style.display = "none";	
}