var Min=0;
function doRotate(){
var xxx=Math.random();
	document.getElementById('general').src="/rotate.asp?"+xxx;
}
function doShow(url, w, h){
var TR = document.getElementById('team_rotate');
var doc = document.images;
	if(!doc.Rotations) doc.Rotations = new Array();
	var jj = doc.Rotations.length;
	doc.Rotations[jj] = new Image;
	doc.Rotations[jj].src = url;
	TR.src = doc.Rotations[jj].src;
	TR.width = w;
	TR.height = h;
	
	Min=setTimeout("doRotate()",5000);
}
doRotate();

