﻿var winNewspapers = null, superyaa = new Image();

function showNewspapers() {
	if(arguments[0] != null) {
		if(winNewspapers == null || winNewspapers.closed)
			winNewspapers = window.open("http://www.haber10.com/images/newspapers/index.htm?" + arguments[0]);
		else {
			winNewspapers.document.location.href = "http://www.haber10.com/images/newspapers/index.htm?" + arguments[0];
			winNewspapers.focus();
		}
	}
}

function showArticles() {
	if(arguments[0] != null) {
			document.location.href = "http://www.haber10.com/makale/" + arguments[0];
	}
}

function hide(divID){
    document.getElementById(''+divID+'').style.display = 'none';
}
    
function displayDiv(divID){
    hide('headline0');hide('spot0');hide('Image0');
    hide('headline1');hide('spot1');hide('Image1');
    hide('headline2');hide('spot2');hide('Image2');
    hide('headline3');hide('spot3');hide('Image3');
    hide('headline4');hide('spot4');hide('Image4');
    hide('headline5');hide('spot5');hide('Image5');
    hide('headline6');hide('spot6');hide('Image6');
    hide('headline7');hide('spot7');hide('Image7');
    hide('headline8');hide('spot8');hide('Image8');
    hide('headline9');hide('spot9');hide('Image9');
    hide('headline10');hide('spot10');hide('Image10');
    

    document.getElementById('headline'+divID).style.display = 'block';
    document.getElementById('spot'+divID).style.display = 'block';
    document.getElementById('Image'+divID).style.display = 'block';
}

/*
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;    */