function showComplement(){
	var browserWidth = 0;
	var browserHeight = 0;
	if(!window.innerWidth){		
		if(!(document.documentElement.clientWidth == 0)){
			browserWidth = document.documentElement.clientWidth;
			browserHeight = document.documentElement.clientHeight;
		}else{
			browserWidth = document.body.clientWidth;
			browserHeight = document.body.clientHeight;
		}
	}else{
		browserWidth = window.innerWidth;
		browserHeight = window.innerHeight;
	}
	
	$("#toplayer").css({width:browserWidth+"px",height:browserHeight+"px",display:"block"}).flash({
		src: '<?=URL_PATH_RES?>www/swf/podglad_kompletu.swf',
	    width: 958,
	    height: 670,
	    wmode: 'widow'
	});	
}