/**
	Shopping Cart Functions
*/

function ShowContent(num)
{
	var box;
	
	box=document.getElementById('contentbox'+num);
	if (box)
		box.style.display='block';
}

function HideContent(num)
{
	var box;
	
	box=document.getElementById('contentbox'+num);
	if (box)
		box.style.display='none';
}

function OpenDemo(id)
{
	var val;

	if (id<10)
		val='0'+id;
	else
		val=id;

	window.open('demos/'+val+'0-0.htm', 'Demo', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,'+
	                                       'resizable=no,width=765,height=660,screenX=100,screenY=100,left=100,top=20');
	return false;
}


