

function showInCenter(id){
	var monitorX = screen.width;
	var monitorY = screen.height;

	var divWidth = $(id).style.width;
	var divHeight = $(id).style.height;
	var topValue;
	var leftValue;
	
	
	topValue = ((monitorY-100)/2)-(divHeight/2);
	leftValue = ((monitorX-20)/2)-(divWidth/2);
	
	$(id).style.top = topValue+'px';
	$(id).style.left = leftValue+'px';
	$(id).style.display = 'block';
	
	setTimeout("Effect.Fade('"+id+"')",2000)
	
}