Hi all, hope you may be able to shed some light on this.

I am having problems writing some simple javascript functions to work on
both PCs and MACs (in particular os9 IE5).

I have created an SVG image which is embedded in my ASP page, then I have a
form which calls several functions to update the SVG graphic. In particular
I need to change text colours, hide / show objects, change font sizes etc.

I have everything working fine on my PC but this is not the case for the
MAC. I only run PCs whereas my client operates both PCs and MACs (os9
running IE5). Example of code:

First Problem:
I want to be able to show / hide images on the screen when you click on a
link

My code:
function show() {
document.getElementById('image').style.setProperty ('visibility',
'visible');
}

Second Problem:
Along the same lines, I would like to be able to change the text colours of
image

My code:
function changecolour() {
document.getElementById('textid').style.setPropert y('fill', '#FF9900');
}

Any advice you could give would be helpful.

Thanks in advance,

Matt