function count_views_video(campanha){
	var imagem = document.createElement('img');
	imagem.id = "imagem";
	imagem.width = 1;
	imagem.height = 1;

	site = window.location;
	imagem.src = 'http://analytics.elnet.com.br/banner_video.php?site=' + site + '&tipo=' + campanha;

	document.getElementById('banner_video').appendChild(imagem);
}

function remove_banner_flutuante_video(){
	var node = document.getElementById('banner_video');
	node.parentNode.removeChild(node);
	//filho.innerHTML = "";
	//pai   = filho.parentNode;
	//pai.removeChild(filho);
}

function loadBanner_video(){
	if (t = document.getElementById('banner_video')){
		setTimeout("t.style.display = 'block';",2000);
	}
}

function getUrlLocation(str){
	return window.location.href;
}

