var iScreenWidth = document.body.scrollWidth;
										var iScreenHeight = document.body.scrollHeight;
										
										var posW = (iScreenWidth / 2) - 380;
										var posH = ((iScreenHeight / 2) - 277) + 120;
										
										document.getElementById("LyrBreadcrumb").style.left = posW;
										document.getElementById("LyrBreadcrumb").style.top = posH;
										
										window.onresize = fnResize;
										
										function fnResize(){
										
											window.location.reload();
											
										}