// Creaturk JavaScript Document
function scaleIt(v) {
  var scalePhotos = document.getElementById(v);

  floorSize = .26;
  ceilingSize = 1.0;
  v = floorSize + (v * (ceilingSize - floorSize));

    scalePhotos.style.width = (v*100)+'px';
}
function scaleIt2(v,id) {
  var scalePhotos = document.getElementById('NewsImage'+id);

  floorSize = .26;
  ceilingSize = 1.0;
  v = floorSize + (v * (ceilingSize - floorSize));

    scalePhotos.style.width = (v*100)+'px';
}

function ChangeNewsDate()
{
if (document.getElementById("NewsYear").selectedIndex>0 && document.getElementById("NewsMonth").selectedIndex>0)
{
	document.location.href="Mineks.News.Current.asp?NewsYear="+document.getElementById("NewsYear").options[document.getElementById("NewsYear").selectedIndex].value+"&NewsMonth="+document.getElementById("NewsMonth").options[document.getElementById("NewsMonth").selectedIndex].value;
}
}

function ChangeClients(tur)
{
	var Country="";
	var Sector="";
	var CountryIndex=0;
	var SectorIndex=0;
	
	CountryIndex=document.getElementById("Country").selectedIndex;
	SectorIndex=document.getElementById("Sector").selectedIndex;

if (CountryIndex>0 || SectorIndex>0)
{
	if (CountryIndex==0){ Country=""; } else {	Country=document.getElementById("Country").options[CountryIndex].value;}
	
	if (SectorIndex==0){ Sector=""; } else { Sector=document.getElementById("Sector").options[SectorIndex].value;}

document.location.href="Mineks.AboutUs.OurNetwork.asp?Tur="+tur+"&Country="+Country+"&Sector="+Sector+"#Harita";
}
//return false;
}
function TeamDegistir(d)
{
	document.getElementById("Chairman").style.display="none"
	document.getElementById("SeniorExecutiveTeam").style.display="none";
	document.getElementById("SeniorColsultantTeam").style.display="none";
	document.getElementById("AsistingTeam").style.display="none";
	document.getElementById("UKTeam").style.display="none";
	javascript:window.scrollTo(0,200);
	document.getElementById("ContentWindowLeftTop").style.height="550px";
	if (d!="")
	{
	document.getElementById(d).style.display="block";
	boy="600px";
	if (d=="ChairMain") {boy="1530px";}
	if (d=="SeniorExecutiveTeam") {boy="2950px";}
	if (d=="SeniorConsultantTeam") {boy="2150px";}
	if (d=="AsistingTeam") {boy="2060px";}
	if (d=="UKTeam") {boy="1870px";}
	}
	document.getElementById("ContentWindowLeftTop").style.height=boy;
return false;
}

function OpenWindow(pg,w,h)
{
var wndw=window.open(pg,"owin","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no, left=200,top=20,copyhistory=no,resizable=no,width="+w+",height="+h+"");
return false;
}