function ShowChart(name, x, y) {
name=name+'.gif';
x=x+10;
y=y+10;
eval("Chart=window.open('','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+x+",height="+y+",top=300,left=300')");
Chart.document.clear();
Chart.document.write('<html><head><title> </title></head><BODY MARGINGHEIGHT=5  MARGINWIDTH=5 leftmargin=5 topmargin=5>');
Chart.document.write('<img src="../images/'+name+'">');
Chart.document.write('</body></html>');
Chart.document.close();
}

function ShowChartR(name, x, y) {
name=name+'.gif';
x=x+10;
y=y+10;
eval("Chart=window.open('','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+x+",height="+y+",top=300,left=300')");
Chart.document.clear();
Chart.document.write('<html><head><title> </title></head><BODY MARGINGHEIGHT=5  MARGINWIDTH=5 leftmargin=5 topmargin=5>');
Chart.document.write('<img src="'+name+'">');
Chart.document.write('</body></html>');
Chart.document.close();
}

function ShowCh(name, x, y) {
x=x+10;
y=y+10;
eval("Chart=window.open('','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+x+",height="+y+",top=300,left=300')");
Chart.document.clear();
Chart.document.write('<html><head><title> </title></head><BODY MARGINGHEIGHT=5  MARGINWIDTH=5 leftmargin=5 topmargin=5>');
Chart.document.write('<img src="'+name+'">');
Chart.document.write('</body></html>');
Chart.document.close();
}
