1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
<script>
function initlinks(){
tablinks=document.getElementsByTagName('a');
params='toolbar=1,menubar=0,location=0,scrollbars=1,resizable=yes,width=600,height=500,left=500,top=30'
i=0;
var reg=/pop/g;
while(tablinks[i]){
if (reg.test(tablinks[i].className)){
tablinks[i].onclick=function(){window.open(this.href,'',params);
return false;}
}
i++;}
}
</script>
<style type='text/css' >
.rouge {color:red;}
.vert{color:green;}
</style>
</head>
<body onload="initlinks()">
<a href="about:blank" class="rouge pop">dsfdsf</a>
<a href="mailto:truc@machinchose.fr" >dsfdsf</a>
<a href="about:blank" class="pop vert">dsfdsf</a>
<a href="mailto:truc@machinchose.fr" >dsfdsf</a>
<a href="about:blank" class="rouge">dsfdsf</a>
</body>
</html> |