function openWin(name,title,image,wi,hi) {
newwin = window.open('',name,'height='+hi+',width='+wi+',top=100,left=100,menubar=no,toolbar=no,resizable=no,scrollbars=no');
newwin.document.write('<html><head><title>'+title+'</title></head>');
newwin.document.write('<body style="margin:0px;width:'+wi+';height:'+hi+';">');
newwin.document.write('<img src="images/'+image+'" width="'+wi+'" height="'+hi+'" alt="'+title+'"/>');
newwin.document.write('</body></html>');
newwin.document.close();
}

function showAnswer(aId) {
	elm = document.getElementById(aId);
	elm.style.display = (elm.style.display == "none")?"":"none";				
}