/*******************************************************
	
	P O P U P   B I L D E R 
	
*******************************************************/

//Popup Fenster anlegen:

document.write (" <div id='popupDiv' align=center  ");
document.write (" style='display:none; position:absolute; left:2px; top:18px; z-index:2; cursor:pointer; background:#eebb55'> ");
document.write (" <table border=0 cellspacing=1 cellpadding=3> ");
document.write (" <tr><td id='popupMain' bgcolor='#eebb77'></td></tr> ");//FFdC76
document.write (" <tr><td id='popupBottom' align='center' bgcolor='#FFF7DD'>&nbsp;</td></tr></table></div> ");

document.onclick=hideDiv;

function hideDiv(){document.getElementById("popupDiv").style.display="none"}

/************* Bild aufrufen */

function showPopupImg(author)
	{
//Variablen	
if (author=="Jose") 
	{url="authors/mexico.jpg"; 
	text="Jose Chacon<br>Mexico<br><a href=http://www.upn.mx/~max/ChacEnCorea/page_01.htm target=_blank>more of his pictures</a>"}
if (author=="Jan") 
	{url="authors/vanRongen.jpg"; 
	text="Jan van Rongen<br>The Netherlands<br><a href=http://www.xs4all.nl/%7Erongen17/korea target='_blank'>Friday Night Files</a>"}
if (author=="Zoran") 
	{url="authors/croatia.jpg"; 
	text="Zoran Mutabzija<br>Croatia<br><a href='http://balrog.posluh.hr/egf/news/more_news.php?news_id=65&country_id=14' target=_blank>his pictures at the EGF HP</a>"}
if (author=="Bernd") 
	{url="authors/austria.jpg"; 
	text="Bernhard Scheid<br>Austria<br><a href=mailto:bescheid@chello.at>e-mail</a>"}


	var myImage= "<img border=0 src="+url+" width=150 height=200>"
	if (text==null) text="Fenster schlie&szlig;en";
		//popupDiv gestalten
	document.getElementById("popupDiv").style.width=158;
	document.getElementById("popupMain").innerHTML=myImage;
	document.getElementById("popupBottom").innerHTML=text;
	document.getElementById("popupBottom").className="bild";	
	
		//position des popup-divs
	posDiv(); 
	
		//Anzeige 
	document.getElementById("popupDiv").style.display='';
	}

function posDiv()
{
	divPos = document.getElementById("popupDiv").style;
    if (document.all) {divPos.top = document.body.scrollTop+18}
    else {divPos.top = self.pageYOffset+18}
}

/*******************************************************
	
	B I L D E R   I M   H A U P T F E N S T E R
	
*******************************************************/
	
function showImg(k)
{
if (k>-1 && k<players2.length)	
	{	
	
	src =players2[k][1]+"/"+players2[k][2]+".jpg"
	comment = players2[k][3]
	copyright= players2[k][1]; 
	if (copyright=="chacon") copyright="&copy; <a href=javascript:showPopupImg('Jose')>Jose Chacon</a>";
	if (copyright=="scheid") copyright="&copy; <a href=javascript:showPopupImg('Bernd')>Bernhard Scheid</a>";
	if (copyright=="vanRongen") copyright="&copy; <a href=\"javascript:showPopupImg('Jan')\">Jan van Rongen</a>";
	if (copyright=="players" || copyright=="igf") copyright="&copy; <a href=javascript:showPopupImg('Zoran')>Zoran Mutabzija</a>";
	if (copyright=="iwabc") copyright="&copy; <a href='http://www.iwabc.com' target=_blank>www.iwabc.com</a>";

	document.getElementById("mainInfo").innerHTML="<img src="+src+" border=0><br>&nbsp;<br>"+comment+"<br>&nbsp;<br>Photo "+copyright+"<br>&nbsp;";

	//loop
	arr=players2.length-1
	
	var b=k-1;  
	var n=k+1; 
	
	document.getElementById("back").innerHTML="<a href=\"javascript:showImg("+b+")\" class=grau><img src='graphics/doppelpfeil_grau_b.gif' alt='back' border=0></a>";
	document.getElementById("next").innerHTML="<a href=\"javascript:showImg("+n+")\" class=grau><img src='graphics/doppelpfeil_grau.gif' alt='next' border=0></a>";
	document.getElementById("imgNr").innerHTML="<tt>image "+(k+1)+"/"+(arr+1)+"</tt>";
	}
else location.reload();
}


