function graphitP(g,gwidth){
	outputP='<table cellspacing="0" cellpadding="0" class="graphTable">'
	for (i=0;i<g.length;i++){
		calwidthP=gwidth*(parseInt(g[i][1])/100)
		outputP+='<tr><td nowrap align="right">' + g[i][0] + '-' + g[i][2] + '</td><td nowrap class="barCell"><img src="'+graphimageP+'" width="'+calwidthP+'" height="10" alt="'+g[i][1]+'" title="' +g[i][1]+ '" style="margin-top:2px"></td></tr>'
	}
	outputP+='</table>'
	document.write(outputP)
}
