function disPlayErrorMsg(msg){
	$("#statusBox").empty();
	$("#statusBox").append(msg);
	$("#statusBox").show('slow');
	
}

function disPlaySuccessMsg(msg){
	$("#successBoxMessage").empty();
	$("#successBoxMessage").append(msg);
	$("#successBoxMessage").show('slow');
	
}
function disPlayErrorMsgProfile(msg){
	$("#statusBoxProfile").empty();
	$("#statusBoxProfile").append(msg);
	$("#statusBoxProfile").show('slow');
	
}

function popunder(url){
	window.open(''+url+'','','width=1024,height=768,left=200,top=200').blur();

// Forces the current window to remain on top
window.focus();
}
