// JavaScript Document
function chpos(flag,id) {
		if(flag==1)
			document.getElementById(id).style.marginTop='10px'
		
		else
			document.getElementById(id).style.marginTop='20px'
		
	}


