// toolBar.js

/**
 * Nifty little function to zoom any document object
 * to an arbitrary percentage of its default size
 *
 * @param obj String object name or reference
 * @param val int    percentage of default size
 */
function zoom(obj,val) {
	obj.style.cursor = 'pointer';
	obj.style.zoom   = val+'%';
}


