
<!--
function cheklik(picid,picurl)  
	{
	var pcd = document.getElementById('setklik').value;
	if( picid ==  pcd)
	{
	document.getElementById('setold').value = picid;
	document.getElementById('picold').value = picurl;
	}
	else
	{
	document.getElementById(picid).src = picurl;
	}  
	}

function checkold(newid,newurl)
	{
	if(document.getElementById('setold').value != ''){
	var pold = document.getElementById('setold').value;
	document.getElementById(pold).src = document.getElementById('picold').value;
	}
	document.getElementById('setklik').value = newid; 
	document.getElementById('picold').value = newurl;
	}
//-->


