self.focus();


function loadWindow()
			{	
				var loadingFile;
				
				var winWidth;
				var winHeight;
				
				var positionH;
				var positionV;
				
				
				loadingFile = "/index.php?TPL=10070"
				winWidth = 624;
				winHeight = 502;	
				
				var positionH = (screen.width - winWidth) / 2; 
				var positionV = (screen.height - winHeight) / 3;
			
				newWindow = open(loadingFile,"loadingWindow","height="+winHeight+",width="+winWidth+",left="+positionH+",top="+positionV+",toolbar=no,statusbar=no,menubar=no,resizable=no,directories=no,location=no");	
			}
			
function closeMe()
{
			window.close();
}