function openWindow(aOb) {
	var newImg = new Image();
	newImg.src = aOb;
	var height = 800;

	var width = 1000;

	var url = aOb.getAttribute('href');
	var left = parseInt((screen.width - width)/2);
	var top = parseInt((screen.height - height)/2);
	var dsdWindow = window.open('','','left='+left+',top='+top+',width='+width+',height='+height+', toolbar=0, location=0, scrollbars=0, menubar=0, status=0');
	dsdWindow.document.write("<html><head><title>meteosputnik.ru</title></head><body style='background: #D7E3EF;'><center><img src=" + url + "></center></body></html>");
	return false;
}


