\n');
}
var main_h = 0;
function reset() {
//ziskanie velkosti okna a nasledna jeho zmena
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
winW = window.innerWidth - (window.innerWidth - window.document.documentElement.clientWidth);
winH = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
winW = document.documentElement.clientWidth;
winH = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
winW = document.body.clientWidth;
winH = document.body.clientHeight;
}
//alert(winH + "x" + winW);
// winH = Math.round()
if (t_w - 40 >winW) {
t_w = winW;
set_w(winW);
} else if (t_w +40 < winW) {
t_w = winW;
set_w(winW);
}
setbd();
//main_h = Math.round(winH * 0.4);
set_h(winH);
t_h = winH;
if (res > t_h ) {
main_DoFSCommand('resize_window', res);
}
}
function set_w(val){
var flash = getFlashObject();
flash.set_w(val);
}
function set_h(val){
var flash = getFlashObject();
flash.set_h(val);
}
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0','name','main','width','100%','height','100%','align','top','id','main','src','main','quality','high','scale','noscale','bgcolor','#000000','allowscriptaccess','sameDomain','allowfullscreen','false','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','main' ); //end AC code
}