function PreloadImages()
{
	var loadedImages = new Array;
	for (i=0; i < PreloadImages.arguments.length; i++)
	{
		loadedImages[i] = new Image();
		loadedImages[i].src = PreloadImages.arguments[i];
	}
}

function SwapImage(targetImage, newImageSrc)
{
	if(document.images)
	if (targetImage && targetImage.src)
	targetImage.src = newImageSrc;
}

function OpenWindow(src)
{
	str='width=810,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no';
	window.open(src,null,str);
}	


function newColor(idCell) {
eval('document.all.'+idCell+'.style.background = "#1A3A97"');
eval('document.getElementById("' + idCell + '").style.background = "#1A3A97"');
}

function backColor(idCell) {
eval('document.all.'+idCell+'.style.background = "#b2b2b2"');
eval('document.getElementById("' + idCell + '").style.background = "#b2b2b2"');
}

