﻿function pencere(name, url, width, height, resizable, scrollbars, titlebar)
{
	var mcx = null;
	mcx=window.open(url, name ,'width=' + width + ',height=' + height + ',status=no,toolbar=no,menubar=no,directories=no,location=no,resizable=' + resizable + ',scrollbars=' +  scrollbars + ',titlebar=' + titlebar + ',alwaysRaised=yes,screenX=0,screenY=0,left=75,top=100');
	mcx.focus();
}
function pencereTavsiye()
{
	var mcxUrun = null;
	mcxUrun = window.open('tavsiye.aspx', 'Tavsiye' ,'width=500,height=200,status=no,toolbar=noyes,menubar=no,directories=no,location=no,resizable=no,scrollbars=yes,titlebar=yes,alwaysRaised=yes,screenX=0,screenY=0,left=75,top=100');
	mcxUrun.focus();
}
function pencereTavsiyeEng()
{
	var mcxUrun = null;
	mcxUrun = window.open('tavsiye_eng.aspx', 'Tavsiye' ,'width=470,height=200,status=no,toolbar=noyes,menubar=no,directories=no,location=no,resizable=no,scrollbars=yes,titlebar=yes,alwaysRaised=yes,screenX=0,screenY=0,left=75,top=100');
	mcxUrun.focus();
}
function openCloseDiv(id)
{
    obj = document.getElementById(id);
	if(obj.style.visibility=="hidden"){
		obj.style.visibility="visible";
		obj.style.display="";
		//obj = document.getElementById('AraText');
		//obj.style.visibility="hidden";
		//obj.style.display="none";
		//obj = document.getElementById('search'); 
		//obj.innerHTML = '<img src="images/arama_image.jpg">';
	}else{
		obj.style.visibility="hidden";
		obj.style.display="none";
		//obj = document.getElementById('AraText');
		//obj.style.visibility="visible";
		//obj.style.display="";
		//obj = document.getElementById('search'); 
		//obj.innerHTML = '<img src="images/arama_image_hide.jpg">';
	}
}