function $$(el) {
	return document.getElementById(el);
}
function closeMsg() {
	$('#msgStatus').fadeOut(1000);	
}
function openMsg(display) {
	if(display == "block") {
		$('#msgStatus').fadeIn(1000);	
	} else {
		$('#msgStatus').fadeOut(1000);	
	}
}