<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<title>Butoane Interactive de tip "Flat"</title>
<style>
.fbuton
{
padding: 2px 12px 3px 12px;
text-decoration:none;
color:black;
text-align: center;
font-family:arial;
font-size:12;
font-weight:normal;
border-color: #B2B2B2;
border-style: solid;
border-width: 1px;
background-color: #DDDCCC;
}
.fbuton:hover
{
border-color:white black black white;
text-decoration:none;
background-color: #C7C7BA;
border-style: solid;
border-width: 1px;
}
</style>
<script>
function dw(fbuton)
{
fbuton.style.borderColor= "black white white black";
}
function up(fbuton)
{
fbuton.style.borderColor= "white black black white";
}
</script>
</head>
<BODY
BGCOLOR="#E9E9E9">
<a href="url1" class="fbuton" onmousedown="dw(this);"
onmouseout="up(this);">Buton1</a>
<a href="url2" class="fbuton" onmousedown="dw(this);"
onmouseout="up(this);">Buton2</a>
<a href="url3" class="fbuton" onmousedown="dw(this);"
onmouseout="up(this);">Buton3</a>
<a href="url4" class="fbuton" onmousedown="dw(this);"
onmouseout="up(this);">Buton4</a>
</BODY>
</html>