<html>
<head>
<link rel="stylesheet" type="text/css" href="../style/styles.css">
<script type='text/javascript'>
var valgtFarve = '#00ff00';
var offFarve = '#004000';
var lastLinkStyle = null;
function doOnclick( stil )
{
if ( stil != lastLinkStyle ) {
if ( lastLinkStyle ) {
lastLinkStyle.color = offFarve;
}
stil.color = valgtFarve;
lastLinkStyle = stil;
}
}; //end doOnclick( Style object )
</script>
</head>
<body>
<p align='left'>
<a href="java script:void(location.href='
http://www.jubii.dk');" target='content' onclick="doOnclick(this.style)">Jubii</a>
<br>
<a href="java script:void(location.href='
http://www.yahoo.com');" target='content' onclick="doOnclick(this.style)">Yahoo</a>
</p>
</body>
</html>