var statusmsg="© Tuga Modelismo Lda"
var soundfile="ping.wav"

function playsound(soundfile){
	if (document.all && document.getElementById){
			document.getElementById("soundeffect").src="" 			
			document.getElementById("soundeffect").src=soundfile;
	}
}

function hidestatus(){
	window.status=statusmsg;
	return true;
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

