// JavaScript Document
<!--
function over(item,url) {
item.src = "img/" + url + "over.jpg";
}
function off(item,url) {
item.src = "img/" + url + ".jpg";
}
function adsoyad_cl() {
adsoyad = document.getElementById("adsoyad");
if (adsoyad.value == "Ad Soyad") {
adsoyad.value = "";	
}
}
function adsoyad_bl() {
adsoyad = document.getElementById("adsoyad");
if (adsoyad.value == "") {
adsoyad.value = "Ad Soyad";
}
}
function not_cl() {
gorus = document.getElementById("gorus");
if (gorus.value == "Görüşleriniz") {
gorus.value = "";	
}
}
function not_bl() {
gorus = document.getElementById("gorus");
if (gorus.value == "") {
gorus.value = "Görüşleriniz";
}

}	
//-->
