function fullScreen(video_id)
{
	var fs = window.open("fullscreen.aspx?video_id=" + video_id, "MaxPlayer", "toolbar=no,width=" + screen.availWidth  + ",height=" + screen.availHeight + ",status=no,resizable=yes,fullscreen=yes,scrollbars=no");
	fs.focus();
}
function openFull()
{
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth, screen.availHeight)
}
var globalVideoZone = 0;
function GetRemoteBanner()
{
	try
	{
		var phpAds_random = new String (Math.random());
		phpAds_random = phpAds_random.substring(2,11);
		
		new Ajax.Request('http://bs.tportal.hr/adview.php?n=" + phpAds_random + "&what=zone:' + globalVideoZone, {
		method: 'GET',
		crossSite: true,
		parameters: {  },
		onLoading: function() {
		},
		onSuccess: function() {
			var flashMov = GetFlashMovieObject('MaxPlayer');
			if(flashMov) flashMov.SetBanner(videoSRC, clickTAG);
		},
		onFailure: function() {
		}
		});
	}
	catch(e)
	{
	
	}
}