﻿function ImgOnError(img)
{
    if(!img.IsLoaded){
        img.setAttribute("IsLoaded",true);
        img.src="http://www.movie34.com/images/noimage.gif";
        img.width=128;
        img.height=96;
    }
}
function makeTagsColor()
{
	for (i = 0; i < arguments.length; i++){
		var colors = Array("#51975B", "#7391DD", "#666666", "#FF0033", "#BB408F", "#E07230");
		var tag = document.getElementById(arguments[i]);
		tag = tag.getElementsByTagName("a");
		for (var j = 0; j < tag.length; j++)
		{
			n = parseInt(colors.length * Math.random());
			tag[j].style.color = colors[n];
		}
	}
}