// JavaScript Document

function blowIt(xDivs) {
	var str = xDivs;
	thearray = str.split(",");
	for(i=0; i<thearray.length; i++ ) {
		myDiv = thearray[i].split("=");
		enlarge(myDiv[0],myDiv[1]);
	}
}

function enlarge(div,size) {
	var mysize = obj(div).style.width;
	mysize = parseFloat(mysize.replace(/px/, ""));
	if(mysize < size) {
		obj(div).style.width = mysize + 2 + "px"; 
		setTimeout("enlarge('" + div + "','" + size + "')", 1);
	} 
}

function obj(objectId){
	if (document.getElementById && document.getElementById(objectId)) {
		return document.getElementById(objectId);
	} else if (document.all && document.all(objectId)) {
		return document.all(objectId);
	} else {
		return false;
	}
}

