function pristabel()
{
//makes a table with all stock no's in the parameter list

//function built by L C Audio Technology

var currency=GetCookie("lcaudiocurrency");
var colortop = 'AAAAAA';
bcolor= new Array();
bcolor[0] = 'DDDDFF';
bcolor[1] = 'AAAAFF';
var c=0;
var i=0;
var varenr=0;

document.write("<table border=1 bordercolor='FFFFFF' cellspacing=0 bgcolor=" + colortop + "><tr><td width=400>Item</td><td width=100>Price in " + Kurs[currency] + "</td><td width=120 align=left><a href='setcur.htm'>Change Currency.</a></td></tr></table>")

for(i=0;i<arguments.length;i++){
varenr=arguments[i];
if (c>1) c=0;

if(currency>0){
document.write("<table border=1 bordercolor='FFFFFF' cellspacing=0 bgcolor=" + bcolor[c] + "><tr><td width=400>" + varee[varenr] + "</td><td width=100 align=right>" + Math.round(100*vp[varenr]/KursValue[currency])/100 + "</td><td width=120 align=left></td></tr></table>")
}
else
{
document.write("<table border=1 bordercolor='FFFFFF' cellspacing=0 bgcolor=" + bcolor[c] + "><tr><td width=400>" + vare[varenr] + "</td><td width=100 align=right>" + Math.round(100*vp[varenr]/KursValue[currency])/100 + "</td><td width=120 align=left></td></tr></table>")
}

c++;
}
}
