function showPic(src){
   if (!e) var e = window.event;
   
   document.getElementById(src).style.visibility='visible';
   document.getElementById(src).style.left = e.clientX + document.body.scrollLeft-100;
   document.getElementById(src).style.top = e.clientY + document.body.scrollTop-130;
}
function hidePic(src){
  document.getElementById(src).style.visibility='hidden';
}

function replaceLink() { 
  if (document.getElementById('nov_sp2').style.display == "none")
  {
    document.getElementById('nov_sp').style.display = "none";
	document.getElementById('nov_sp2').style.display = "block";
  }
 else
  {
    document.getElementById('nov_sp').style.display = "block";
	document.getElementById('nov_sp2').style.display = "none";
  }
}
window.setInterval("replaceLink()",10000); 

function popup(url,baslik, w, h) {
    options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=no,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url, baslik, options);
    newWin.focus();
	 }
function flash() {
 if (!document.all) return;
 else {
   for(i=0;i<document.all.tags('blink').length;i++){
      s=document.all.tags('blink')[i];      
	  s.style.color=(s.style.color=='#356ea4')?'#fd704a':'#356ea4';
   }
 }
}
