//Racheli #53025-Add "In Process, Please Wait" message to all NetImex requests  
//this function shows and hide the div and place it next to the link/button which were presses
function showPleaseWaitMsg()
{
	var pleaseWaitDiv = document.getElementById('pleaseWaitDiv');
	if(document.body.scrollTop > 0)//if there is a scroll we will add to top so we'll see the message in the right place
	{
		pleaseWaitDiv.style.top=document.body.scrollTop+300;//+window.event.y+20 add this instead of 300 if position needed is where we click
	}
	pleaseWaitDiv.className = 'visible';
	return true;
}
