

function openbox(url)
{
	var box = document.getElementById('box'); 
	document.getElementById('shadowing').style.display='block';
  
  
	var content = document.getElementById('boxcontent');
	content.style.padding="0";

	content.innerHTML = '<img src=' + url + ' overflow:hidden; align="bottom" width="550" height="700" border="0" hspace="1" alt="CC_550x700" />';
	
	box.style.display='block';	
}


function closebox()
{
	document.getElementById('box').style.display='none';
	document.getElementById('shadowing').style.display='none';
}	

