function openWindow(aOb) {
	var newImg = new Image();
	newImg.src = aOb;
	var height;
	var width;
	if (newImg.height == 0)
		height = screen.height;
	else height = newImg.height + 20;
	if (newImg.width != 0)
		width = newImg.width + 40;
	else width = 540;
	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=1, menubar=0, status=0');
	dsdWindow.document.write("<html><head><title>E-MC.RU</title></head><body style='background: #D7E3EF;'><center><img src=" + url + "></center></body></html>");
	return false;
}

function switchImage(a,b)
{
	img = document.getElementById("mainimage");
	lnk = document.getElementById("mainimagelink");
	img.src = a;
	lnk.href = b;
}
