function showVideo(video_link){
	var path = video_link.getAttribute('rel');
	var div_video = document.getElementById('video');
	
	div_video.style.backgroundImage = 'url(img/loading_video.jpg)';
	div_video.style.display = 'block';
	
	var html = '<object data="'+path+'" type="video/x-ms-wmv" width="222" height="147" border="0">';
		html += '<param name="showControls" value="0">';
		html += '<param name="ShowStatusBar" value="1">';
		html += '<param name="src" value="'+path+'">';
		html += '<param name="autostart" value="1">';
		html += '<embed type="video/x-ms-wmv" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/';
		html += 'showcontrols="0"'; 
		html += 'showtracker="1"'; 
		html += 'showdisplay="1"'; 
		html += 'showstatusbar="1"'; 
		html += 'autostart="1"';  
		html += 'loop="0"'; 
		html += 'src="' + path + '"></embed></object>';
	div_video.innerHTML = html;
	
	return false;
}

function showVideoBIG(video_link){
	var path = video_link.getAttribute('rel');
	var div_video = document.getElementById('videoBIG');
	
	if(document.all){
		div_video.style.backgroundImage  = 'url(img/loadingVideo.gif)';
		div_video.style.backgroundPosition  = 'center';
		div_video.style.backgroundRepeat = 'no-repeat';	
	}
	
	div_video.style.display = 'block';
	document.getElementById('container').style.height = '690px';
	
	var html = '<object data="'+path+'" type="video/x-ms-wmv" width="400" height="375" border="0">';
		html += '<param name="showControls" value="1">';
		html += '<param name="ShowStatusBar" value="1">';
		html += '<param name="src" value="'+path+'">';
		html += '<param name="autostart" value="1">';
		html += '<embed type="video/x-ms-wmv" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/';
		html += 'showcontrols="1"'; 
		html += 'showtracker="1"'; 
		html += 'showdisplay="1"'; 
		html += 'showstatusbar="1"'; 
		html += 'autostart="1"';  
		html += 'loop="0"'; 
		html += 'src="' + path + '"></embed></object>';
	div_video.innerHTML = html;
	
	return;
}