function setLinkSolutions()
{
	var l = document.getElementsByClassName("solution_bloc");
	var d;
	for (var i = 0; i < l.length; i++) {
		d = document.getElementById(l[i].id);
		
		if (d) {
			d.style.cursor = 'pointer';
			d.onclick = function(){
				var a = document.getElementById("link_"+this.id);
				document.location.href = a.href;
			}
		}
		
	}
}

function video(url)
{
	window.open(url,'','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,status');
}

window.onload = setLinkSolutions;


