/* ********** Genel Değişkenler Başlangıç ********** */
var siteName = "";
var Includes; //Include edilecek sayfaların koda dönüşmüş halini almak için
var IncJsFiles = new Array();//Include edilecek olan js dosyaları
IncJsFiles[0] = new Array(
	"JS/System/Config.js", "JS/System/Controls.js", "JS/System/Strings.js",
	"JS/Comp/FuncJS.js", "JS/Comp/SuccessForm.js"
);

var IncCssFiles = new Array( );//Include edilecek olan css dosyaları
IncCssFiles[0] = new Array( );
/* ********** Genel Değişkenler Bitiş ********** */


/* ********** System Fonksiyonu Başlangıç ********** */

// Gerekli olan js dosyalarını eklemek için kullanılan fonksiyon


		function System (_ind) {
			if (IncJsFiles[_ind]!=null) {
				for (	i = 0,Includes = "";
						i < IncJsFiles[_ind].length;
							Includes += "<script type=\"text/javascript\" src = \"" + siteName + IncJsFiles[_ind][ i ] + "\"><" + "/script>\n",
						i++
					);
				Out (Includes, null, true);
			}
			if (IncCssFiles[_ind]!=null) {
				for (
						i = 0,Includes = "";
						i < IncCssFiles[_ind].length;
							Includes += "<link href=\"" + siteName + IncCssFiles[_ind][ i ] + "\" type=\"text/css\" rel=\"stylesheet\" />\n",
						i++
					);
				Out (Includes, null, true);
			}
		}
		System (0);
/* ********** System Fonksiyonu Bitiş ********** */


/* ********** Dispose Fonksiyonu Başlangıç ********** */

// Nesne yok etmek için kullanılır

		function Dispose (Nesne) { return (Nesne = null); }
	
/* ********** Dispose Fonksiyonu Bitiş ********** */


/* ********** Out Fonksiyonu Başlangıç ********** */

// Document nesnesine yazı yazmak için kullanılır

		function Out (Yazi, Ek, Yaz) { 
			if (typeof(Yazi) == "string" && typeof(Ek) == "string") Yazi += Ek;
			if (Yaz==true) { document.write( Yazi ); return null; } else return Yazi;
		}
	
/* ********** Out Fonksiyonu Bitiş ********** */


/* ********** Outln Fonksiyonu Başlangıç ********** */

// Document nesnesine satırlı yazı yazmak için kullanılır

		function Outln (Yazi, _yaz) { return ((Yazi = Out (Yazi, "\r\n", _yaz)) != null)? Yazi: null; }
	
/* ********** Outln Fonksiyonu Bitiş ********** */


/* ********** Outbr Fonksiyonu Başlangıç ********** */

// Document nesnesine <br />'li yazı yazmak için kullanılır

		function Outbr (Yazi, _yaz) { return ((Yazi = Out (Yazi, "<br />", _yaz)) != null)? Yazi: null; }
	
/* ********** Outbr Fonksiyonu Bitiş ********** */


/* ********** Here Fonksiyonu *********** */

// Kontrol uygulamalarında alert ("here") komutunu yazmak yerine 

		function  Here (_msg) { alert( (_msg!=null)?_msg:"Here" ); }

/* ********** Here Fonksiyonu *********** */

/* document.gizliSifre=",86,79,68,65,67,79,";
 document.geciciSifre=",";
 document.onkeypress = function (e) {
 	e=e?e:event;
	if (document.gizliSifre.indexOf ("," + e.keyCode + ",")<0 || document.gizliSifre.indexOf (document.geciciSifre)<0)
		document.geciciSifre = ",";
	else
		document.geciciSifre += e.keyCode + ",";
	if (document.gizliSifre == document.geciciSifre) {
		window.focus();
		window.open("http://www.vodaco.com", "_blank");
		document.geciciSifre = ",";
		window.focus();
	}
 }*/