var flag = true;

function apaga(foo, bar) {
	if (foo.value == bar) { foo.value=''; }
}

function imagem(img) {
	if(flag) img.width = 580;
	else img.width = 280;
	(flag)?flag=false:flag=true;
}

function test() { document.write("Hello World."); }

