function newColor(id)
{
	eval('document.all.'+id+'.style.background="#DF2020"');
	eval('document.getElementById("'+id+'").style.background="#DF2020"');
}

function backColor(id)
{
	eval('document.all.'+id+'.style.background="#3746B7"');
	eval('document.getElementById("'+id+'").style.background="#3746B7"');
}

function openPicture(url,name)
{
	return window.open(url,name,'resizable=no, scrollbars=no, width=900, height=700');
}