function doFloat() {
	var x = document.getElementById("img").style.cssFloat = "left";
}

function undo() {
	var y = document.getElementById("img").style.cssFloat = "none";
}
