// JavaScript Documents
var old,skn,iex = (document.all),yyy=-1000;
var ns4 = document.layers;
var ns6 = document.getElementById&&!document.all;
var ie4 = document.all;

init();

function init()
{
	if (ns4)
	{	
		if(document.dek != null)
		{
			skn = document.dek;
		}
	}
	else if (ns6)
	{
		if(document.getElementById("dek") != null)
		{
			skn = document.getElementById("dek").style;
		}
	}
	else if (ie4)
	{
		if(document.all.dek != null)
		{
			skn = document.all.dek.style;
		}
	}
	
	if(ns4)
	{
		document.captureEvents(Event.MOUSEMOVE);
	}
	else
	{
		if(skn != null)
		{
			skn.visibility = "visible";
			skn.display = "none";
		}
	}
}

function popup(varMsg)
{
	var descX = 0;
	var descY = 0;
	
	if(skn == null)
	{
		init();
	}
	
	if(varMsg == "canerler")
	{
		descX = 250;
		descY = 200;
		varContent = "<p>CANERLER MAĞAZA İŞLETMECILIGI GIDA SAN. İÇ DIŞ TİC. A.Ş.</p>" +

"In 1987 with the opening of our first supermarket, we entered into the retail store business and Canerler became one of the best known brands in Ankara by increasing the number of our new supermarket stores. By 2005, Canerler have been increased the number of supermarkets to 50, and made a partnership with another group from the same sector. ";
	}
	else if(varMsg == "anmar")
	{
		descX = 250;
		descY = 200;
		varContent = "<p>ANMAR GIDA VE TÜKETİM MALLARI PAZARLAMA MÜMESSİLLİK TİC. SAN. A.Ş.</p>" +

"Anmar Inc. has activities on marketing and operation of Kızılcahamam Mineral Water facilities across the country.";
	}
	else if(varMsg == "kbcins")
	{
		descX = 400;
		descY = 200;
		varContent = "<p>KBC İNŞAAT TAAHHÜT PAZARLAMA SANAYİ VE TİCARET A.Ş.</p>" +

"KBC has operations in building contracter and commitment services sector.";
	}
	else if(varMsg == "keybi")
	{
		descX = 120;
		descY = 200;
		varContent = "<p>KEYBİ İNŞAAT TAAHHÜT MÜHENDİSLİK HİZMETLERİ TİC. VE SAN. A.Ş.</p>" + 

"Keybi have operations in building contracter and commitment services sector.";
	}
	else if(varMsg == "beka")
	{
		descX = 250;
		descY = 180;
		varContent = "<p>BEKA PAZARLAMA VE GIDA SAN. TİC. A.Ş.</p>" + 

"Beka involves in food marketing activities across the counry.";
	}
	else if(varMsg == "kbcdis")
	{
		descX = 250;
		descY = 180;
		varContent = "<p>KBC DIŞ TİCARET PAZARLAMA A.Ş.</p>" + 

"KBC involves in international food marketing activities.";
	}
	
	var content = "<TABLE  WIDTH=340 HEIGHT=160 BORDER=1 BORDERCOLOR=black CELLPADDING=2 CELLSPACING=10 " +
	"BGCOLOR=\"#0E234B\"><TD ALIGN=center><FONT COLOR=lightgrey SIZE=2>" + varContent + "</FONT></TD></TABLE>";
	
	if(ns4)
	{
		skn.left = descX;
		skn.top = descY;
		skn.document.write(content);
		skn.document.close();
		skn.visibility="visible";
	}
 	if(ns6)
 	{
		skn.left = descX + "px";
		skn.top = descY + "px";
 		document.getElementById("dek").innerHTML = content;
 		skn.display='';
 	}
 	if(ie4)
 	{
		skn.left = descX;
		skn.top = descY;
 		document.all("dek").innerHTML = content;
 		skn.display='';
 	}
}

function kill()
{
	if(skn != null)
	{
		yyy = -1000;
		if(ns4)
		{
			skn.visibility = "hidden";
		}
		else if (ns6||ie4)
		{
			skn.display = "none";
		}	
	}
}

