function view(video , title, note, mp3)
{
	var code = '';

	if(document.documentElement.scrollTop == 0)
	{
		top_position = document.body.scrollTop + 170;
	}
	else 
	{
		top_position = document.documentElement.scrollTop + 170;
	}
	
	if (mp3 == 'play')
	{
	code = '<div id="gallery-big"></div>'
		 + '<div id="gallery-big-space"><div class="play-title">&nbsp;' + title + '</div><div class="play-close"><a href="javascript:" onclick="hidden()" alt="Close" ><img alt="Close"  class="play-close-img" src="../images/r-close.png" /></a></div><br/>'
		 + '<object id="player2" type="application/x-shockwave-flash" data="http://www.richardsalay.com/swf/player-viral.swf" width="600" height="408">\n'
		 + '<param name="movie" value="http://www.richardsalay.com/swf/player-viral.swf" />\n'
		 + '<param name="allowfullscreen" value="true" />\n'
		 + '<param name="allowscriptaccess" value="always" />\n'
		 + '<param name="flashvars" value="file=http://www.richardsalay.com/mp3/' + video + '&autostart=true&image=http://richardsalay.com/images/img01-v2.jpg"  />\n'
		 + '<p><a href="http://get.adobe.com/flashplayer">Stahněte si flash pokud vám nejde přehrát video</a></p>\n'
		 + '</object><div class="play-note">' + note + '</div></div>\n';
	}
	else
	{
	
		code = '<div id="gallery-big"></div>'
		 + '<div id="gallery-big-space"><div class="play-title">&nbsp;' + title + '</div><div class="play-close"><a href="javascript:" onclick="hidden()" alt="Close" ><img alt="Close"  class="play-close-img" src="../images/r-close.png" /></a></div><br/>'
		 + '<object id="player2" type="application/x-shockwave-flash" data="http://www.richardsalay.com/swf/player-viral.swf" width="600" height="408">\n'
		 + '<param name="movie" value="http://www.richardsalay.com/swf/player-viral.swf" />\n'
		 + '<param name="allowfullscreen" value="true" />\n'
		 + '<param name="allowscriptaccess" value="always" />\n'
		 + '<param name="flashvars" value="file=http://www.richardsalay.com/flv-new/' + video + '&autostart=true&bufferlength=3" />\n'
		 + '<p><a href="http://get.adobe.com/flashplayer">Stahněte si flash pokud vám nejde přehrát video</a></p>\n'
		 + '</object><div class="play-note">' + note + '</div></div>\n';
	}
	
		 
		 
	document.getElementById('testa').innerHTML = code;	
	document.getElementById('gallery-big-space').style.top = top_position + 'px';
	document.getElementById('gallery-big').style.visibility = 'visible'; 
	document.getElementById('gallery-big-space').style.visibility = 'visible'; 
	document.getElementById('player2').style.visibility = 'visible'; 
	document.getElementById('player2').style.display = 'block'; 
	document.getElementById('title').style.visibility = 'hidden'; 	
	document.getElementById('menu').style.visibility = 'hidden'; 
	document.getElementById('photo').style.visibility = 'hidden'; 
	document.getElementById('langs').style.visibility = 'hidden'; 
	document.getElementById('content').style.visibility = 'hidden'; 
//	document.getElementById('body-main').style.background = 'url(../images/s.png) #000'; 
	
}

function hidden()
{
	var code = '';
	document.getElementById('gallery-big').style.visibility = 'hidden'; 
	document.getElementById('gallery-big').style.diplay = 'none'; 
	document.getElementById('gallery-big-space').style.visibility = 'hidden'; 
	document.getElementById('gallery-big').style.diplsay = 'none'; 
	document.getElementById('player2').style.visibility = 'hidden'; 
	document.getElementById('player2').style.display = 'none'; 
	document.getElementById('title').style.visibility = 'visible'; 	
	document.getElementById('menu').style.visibility = 'visible';
	document.getElementById('photo').style.visibility = 'visible'; 
	document.getElementById('langs').style.visibility = 'visible';
	document.getElementById('content').style.visibility = 'visible';
	document.getElementById('testa').innerHTML = code;	
//	document.getElementById('body-main').style.background = 'url(../images/img01-v2.jpg) repeat left top'; 
	

}

