/**
 * Very nice Complex Browser
 */
/* get the browser width and height at run time*/
var brWidth = 0;
var brHeight = 0;
function BrowserResize() {
	if (document.all){
		try{
			brWidth = document.body.clientWidth;
			brHeight = document.body.clientHeight;
		} catch(e) {
		}
	}else{
		try{
			brWidth = window.innerWidth;
			brHeight = window.innerHeight;
		} catch(e) {
		}
	}
}
function SetZaaiMovie(){
		try{
			BrowserResize();
			mmFlashZaai();
		} catch(e) {
		}
}
window.onresize = SetZaaiMovie;