// ullikates.js

function handelMouseOver(theelement)
{
	theelement.style.border="1px solid #e6dccc";
}

function handelMouseOut(theelement)
{
	theelement.style.border="1px solid #f6eee1";
}


function handleProductClick(productid,productname,productimage,prdescription) 
{
	document.getElementById('contentleft').innerHTML =
	'<div align="center"><b style="font-variant: small-caps; font-size: 14px;">'
	+ productname + 
	'</b><p class="prddescr">'
	+prdescription+
	'</p><img src="'+productimage+'"/>'
	+'</div>';
}

