/*
 * property of webEye design studio
 * http://www.webEye.spb.ru
 */
function doLayout(){
    isMSIE=document.all && document.all.item && !(window.opera);
    if (isMSIE) {dW = document.body.clientWidth; dH = document.body.clientHeight} else {dW = innerWidth; dH = innerHeight}
    dW = parseInt(dW);
    dH = parseInt(dH);
	minWidth = 720;
	minHeight = 550;
    if (dW<minWidth){    	document.getElementById('flashcontent').style.width =  minWidth +"px";
    } else {
    	document.getElementById('flashcontent').style.width = "100%";
    }
    if (dH<minHeight){		document.getElementById('flashcontent').style.height = minHeight + "px";
    } else  {		document.getElementById('flashcontent').style.height = "100%";
    }
}



