function change() {
	var screenWidth = screen.availWidth;
	temp = document.getElementById('test3');
	if (screenWidth > 850) {
// 768 x 1024	
		if (isIE) {
			temp.style.height = '536px';
			temp.style.width = '730px';
			temp.style.left = '256px';
			temp.style.top = '980px';			
		} else {
// Netscape		
			temp.style.height = '536px';
			temp.style.width = '730px';
			temp.style.left = '256px';
			temp.style.top = '960px';		
		}
	} else {
// 600 x 800	
		if (isIE) {
			temp.style.height = '418px';
			temp.style.width = '570px';	
			temp.style.left = '190px';
			temp.style.top = '1050px';
		} else {
// Netscape		
			temp.style.height = '418px';
			temp.style.width = '570px';	
			temp.style.left = '190px';
			temp.style.top = '1000px';
		}
	}
}

