function showHidePreviw(line){
	if (line.style.display=='') {
		line.style.display='none';
	} else {
		line.style.display='';
	}
}