<script type="text/javascript">
/* This script and many more are available free online at
The JavaScript Source!!
http://javascript.internet.com
Created by: Will Bontrager |
http://www.willmaster.com/Licensed under: U.S. Copyright
*/
function FlipDisplay(d1,d2) {
if(document.getElementById(d1).style.display == "none") {
document.getElementById(d1).style.display = "";
document.getElementById(d2).style.display = "none";
} else {
document.getElementById(d1).style.display = "none";
document.getElementById(d2).style.display = "";
}
}
</script>
<style>
.testimonialNormalFlow {
border:1px #666666 dashed;
padding:10px;
width: 180px;
font: .8em verdana, arial, helvetica, sans-serif;
}
p.testimonial {
margin:0;
font-weight:bold;
background-color:#efefef;
padding:3px;
letter-spacing:3px;
font-size:larger;
text-align:center;
}
p.collapseTitle {
margin:0;
text-align:right;
font-size: .8em;
margin-top: -10px;
}
</style>
<!-- Start of Özetle container div -->
<div class="testimonialNormalFlow">
<p class="testimonial">DUYURULAR</p>
<!-- Start of collapsed content div -->
<div id="testimonialA">
<p>
wwww.osmaner.tr.gg
</p>
<p class="collapseTitle">
<a href="javascript:FlipDisplay('testimonialA','testimonialB')">[devamı ...]</a>
</p>
</div>
<!-- End of collapsed content div -->
<!-- Start of expanded content div -->
<div id="testimonialB" style="display:none;">
<p>
YAZINIZIN KONU BAŞLIĞINI YAZINIZ</p>
<p>
BURAYA NOTUN DEVAMINI YAZIN </p>
<p>
YAZIYA DEVAM EDİN .</p>
<p>YAZININ VARSA EKLERİ <br><a href="http://www.osmaner.tr.gg">www.osmaner.tr.gg</a></p>
<p class="collapseTitle">
<a href="javascript:FlipDisplay('testimonialA','testimonialB')">[Kapat]</a>
</p>
</div>
<!-- End of expanded content div -->
</div>
<!-- End of testimonial container div -->
______________