    function MyResize() {

	var theHeight = 0;
	if (window.innerHeight) {
	    theHeight=window.innerHeight;
	} else {                       
	    if (document.documentElement && document.documentElement.clientHeight) {
		theHeight=document.documentElement.clientHeight;                     
	    } else {                                                               
		if (document.body) {                                               
		    theHeight=document.body.clientHeight;                            
		}                                                                  
	    }                                                                      
	}                                                                          
	WindowHeight = theHeight;  
	var theWidth = 0;
	if (window.innerWidth) {
	    theWidth=window.innerWidth;
	} else {                       
	    if (document.documentElement && document.documentElement.clientWidth) {
		theWidth=document.documentElement.clientWidth;                     
	    } else {                                                               
		if (document.body) {                                               
		    theWidth=document.body.clientWidth;                            
		}                                                                  
	    }                                                                      
	}                                                                          
	WindowWidth = theWidth;  
	document.getElementById('dynamic').style.left = parseInt((WindowWidth - 768) / 2)+'px';
	document.getElementById('dynamic').style.height = parseInt(576)+'px';
	document.getElementById('dynamic').style.top = parseInt((WindowHeight - 576) / 2)+'px';
	document.getElementById('design_top').style.left = parseInt((WindowWidth - 768) / 2)+'px';
	document.getElementById('design_top').style.top = parseInt((WindowHeight - 576) / 2)+'px';
	document.getElementById('design_bottom').style.left = parseInt((WindowWidth - 768) / 2)+'px';
	document.getElementById('design_bottom').style.top = parseInt(((WindowHeight - 576) / 2)+544)+'px';
	document.getElementById('design_copy').style.left = parseInt((WindowWidth - 768) / 2)+'px';
	document.getElementById('design_copy').style.top = parseInt(((WindowHeight - 576) / 2)+550)+'px';
    }

