// JavaScript Document

function zoomin(){
	document.getElementById("zoom").style.width='50px';
	

}

function zoomout(){
	document.getElementById("zoom").style.width='15px';
	

}
