function ClImgShow(url,label) {
	Shadowbox.open(
	{
	title: label,
	player: 'img',
	type: 'img',
	content: url
	});
}


function ClHtmlShow(url,label,largura,altura) {
	Shadowbox.open(
	{
	title: label,
	player: 'iframe',
	content: url,
	width: largura,
	height: altura
	
	});
	
}


function ClHtmlShowAll(url,label) {
	Shadowbox.open(
	{
	title: label,
	player: 'iframe',
	content: url
	});
	
}




function ClAlertShow(msg,label,largura,altura) {
	msg = '<Div id=alerta align=center ><span class="laranja bold">'+msg+'</span></div>'
	Shadowbox.open(
	{
	title: label,
	player: 'html',
	content: msg,
	width: largura,
	height: altura
	
	});
	
}