function change() {
	var screenWidth = screen.availWidth;
	temp = document.getElementById('check1');
	if (screenWidth > 850) {
// 768 x 1024	
		if (isIE) {
			temp.style.height = '487px';
			temp.style.width = '730px';
			temp.style.left = '230px';
			temp.style.top = '860px';		
		} else {
// Netscape		
			temp.style.height = '487px';
			temp.style.width = '730px';		
			temp.style.left = '250px';
			temp.style.top = '880px';			
		}
	} else {
// 600 x 800	
		if (isIE) {
			temp.style.height = '380px';
			temp.style.width = '570px';	
			temp.style.left = '190px';
			temp.style.top = '910px';
		} else {
// Netscape		
			temp.style.height = '380px';
			temp.style.width = '570px';	
			temp.style.left = '190px';
			temp.style.top = '920px';
		}
	}
}

