cc1 = 0;
magflg1 = 0;
function magnif1a(){
	if(magflg1==0){
		var obj = document.getElementById("mag01");
		if (obj.width < 140){
			cc1 = cc1 - 1;
			if(cc1 < -10) {cc1 = -10;magflg1=1;}
			obj.style.left = cc1;
			obj.style.top = cc1;
			obj.width = obj.width + 2;
			obj.height = obj.height + 2;
			setTimeout("magnif1a()",1);
		}else{
			obj.style.left = -10;
			obj.style.top = -10;
			obj.width = 140;
			obj.height =140;
			cc1 = -10;
			magflg1=1;
		}
	}
}
function magnif1b(){
	if(magflg1==1){
		var obj = document.getElementById("mag01");
		if (obj.width > 120){
			cc1 = cc1 + 1
			obj.style.left = cc1;
			obj.style.top = cc1;
			obj.width = obj.width - 2;
			obj.height = obj.height - 2;
			setTimeout("magnif1b()",1);
		}else{
			obj.style.left = 0;
			obj.style.top = 0;
			obj.width = 120;
			obj.height =120;
			cc1 = 0;
			magflg1=0;
		}
	}
}

cc2 = 0;
magflg2 = 0;
function magnif2a(){
	if(magflg2==0){
		var obj = document.getElementById("mag02");
		if (obj.width < 140){
			cc2 = cc2 - 1;
			if(cc2 < -10) {cc2 = -10;magflg2=1;}
			obj.style.left = cc2;
			obj.style.top = cc2;
			obj.width = obj.width + 2;
			obj.height = obj.height + 2;
			setTimeout("magnif2a()",10);
		}else{
			obj.style.left = -10;
			obj.style.top = -10;
			obj.width = 140;
			obj.height =140;
			cc2 = -10;
			magflg2=1;
		}
	}
}
function magnif2b(){
	if(magflg2==1){
		var obj = document.getElementById("mag02");
		if (obj.width > 120){
			cc2 = cc2 + 1
			obj.style.left = cc2;
			obj.style.top = cc2;
			obj.width = obj.width - 2;
			obj.height = obj.height - 2;
			setTimeout("magnif2b()",10);
		}else{
			obj.style.left = 0;
			obj.style.top = 0;
			obj.width = 120;
			obj.height =120;
			cc2 = 0;
			magflg2=0;
		}
	}
}
