I fixed it.
What i did was this:
HTML Code:
document.write("<a href="http://www.hondaciviccrewapeldoorn.nl"><img src='/images/advertenties/" + imgPath1 + " alt='" + imgAlt + "' width='250'></a>");
What i had to do was this:
HTML Code:
document.write("<a href=http://www.hondaciviccrewapeldoorn.nl><img src='/images/advertenties/" + imgPath1 + "' alt='" + imgAlt + "' width='190'></a>");
The only diffrence between them are the " " infront and after the link.
<a href="http://www.hondaciviccrewapeldoorn.nl">
<a href=http://www.hondaciviccrewapeldoorn.nl>
Took me only more than 2 days!