Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
.link {
color:red;text-Decoration:none;
}
.pop {
position:absolute;z-Index:101;visibility:hidden;width:150px;height:50px;background-Color:#FFFFCC;
}
/*]]>*/
</style>
<script type="text/javascript">
/*<![CDATA[*/
function Pop(id,lk,lft,top,ms){
var pop=document.getElementById(id),pos=Pos(lk);
lk.style.textDecoration='none';
pop.style.visibility='hidden';
clearTimeout(pop.to);
if (lft){
pop.to=setTimeout(function(){
lk.style.textDecoration='underline';
pop.style.left=pos[0]+lft+'px';
pop.style.top=pos[1]+top+'px';
pop.style.visibility='visible';
},ms||500);
}
}
function Pos(obj){
var rtn=[0,0];
while(obj){
rtn[0]+=obj.offsetLeft;
rtn[1]+=obj.offsetTop;
obj=obj.offsetParent;
}
return rtn;
}
/*]]>*/
</script>
</head>
<body>
Answer: The answer is no if you’re under the age of 65. Anyone under the age of 65 can make <a href="#" class="link" onmouseover="Pop('pop1',this,50,20);" onmouseout="Pop('pop1',this);" >super contributions</a> whether they are working, rearing children, looking after a sick partner, recovering from illness or on an extended holiday.
If you are aged 65 or over then you must satisfy a work test if you’re seeking to make <a href="#" class="link" onmouseover="Pop('pop2',this,50,20,1000);" onmouseout="Pop('pop2',this);" >super contributions</a>. You must be gainfully employed for at least 40 hours in a consecutive 30-day period in the year in which you make the super contribution.
<div id="pop1" class="pop" >The answer is no</div>
<div id="pop2" class="pop" >you are aged 65 or over</div>
</body>
</html>
Bookmarks