function flip(img) {
	current = img.src;
	state = current.substr((current.length-5), 1);
	
	if (state < 3)
	if (state==1)
		img.src = current.substr(0, (current.length-5))+"0.gif";
	else
		img.src = current.substr(0, (current.length-5))+"1.gif";
	
}

function popme(str) {
	var win = window.open(str, "pic", "width=545,height=550,scrolling=no");
	win.focus();
}

