<!--
if (document.images) {
var t1off = new Image();
t1off.src = "docs/turkceoff.jpg";
var t1on = new Image();
t1on.src = "docs/turkceon.gif";

var t2off = new Image();
t2off.src = "docs/englishoff.jpg";
var t2on = new Image();
t2on.src = "docs/englishon.gif";

}
function on(imgName) {
if (document.images) 
document[imgName].src = eval(imgName+"on"+".src");
}
function off(imgName) {
window.status = "";
if (document.images)
document[imgName].src = eval(imgName+"off"+".src");
}
//-->