// window opener'lar. (bunlar ileride tek bir taneye çevrilecek)
function windowOpener()
{
	window.open('empty.htm','Empty','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=475,height=550,marginwidth=0,marginheight=0');
}
function SizeableWindowOpener(PixW,PixH,WinName)
{
	window.open('empty.htm',WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + PixW + ',height=' + PixH + ',marginwidth=0,marginheight=0');
}
function CustomWindowOpener(PixW,PixH,WinName,scroll)
{
	window.open('empty.htm',WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll +',resizable=1,width=' + PixW + ',height=' + PixH + ',marginwidth=0,marginheight=0');
}
function MenuWindowOpener(PixW,PixH,WinName,scroll,Url)
{
	window.open(Url,WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll +',resizable=1,width=' + PixW + ',height=' + PixH + ',marginwidth=0,marginheight=0');
}

// IE 5.0 kontrol
function msieversion()
{
	var ua = window.navigator.userAgent
	var msie = ua.indexOf ( "MSIE " )
	if ( msie > 0 )
		return parseInt (ua.substring(msie+5,ua.indexOf(".",msie)))
	else
		return 0
}
if (msieversion()<5)
{
	alert('Sitenizde Microsoft Internet Explorer 5.0+ browser kullanmaya başladınız mı?.');
}
if (navigator.appName!="Microsoft Internet Explorer") 
{
	window.location ="netscape.asp"
}

// Toggle olayı
function toggle(secname)
{
	var currElm;
	currElm = document.all(secname);
	if (currElm.style.display == "none")
	{
		currElm.style.display = "";
	}
	else
	{
		currElm.style.display = "none";
	}
}

// Web site version ve server no
function version()
{
	alert('S. Şahin (COM+)\n\nRevision Date : 00:22 07.02.2002\n\nServer 2');
}

// Legal Notice (Bu hadiseyi de window opener script'e gönderip mi yapsak)
function LegalNotice()
{
	window.open('/Messages/YasalUyari.asp','YasalUyari','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=350,marginwidth=0,marginheight=0');
}