var lastelm=0;

function pickcolor(elm)
{
window.open("colorpicker/colorpicker.htm#"+elm.id,"","location=0,status=0,scrollbars=0,width=550,height=305");
}

function pokaz(id,elm)
{
if (lastelm!=0) document.getElementById(lastelm).style.backgroundColor='';
document.getElementById(elm).style.backgroundColor='red';
lastelm=elm;
document.getElementById('wybrany').value=id;
}

function odswiez()
{
id=document.getElementById('wybrany').value;
c1=document.getElementById('t1').value.substr(1);
c2=document.getElementById('t2').value.substr(1);
x='gif.php?c1='+c1+'&c2='+c2+'&p='+id;
document.getElementById('wynik').src=x;
}