// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//	YAYGIN JAVASCRIPT KODLARI
//	Created by SdtKmc	~Last Update: 26/05/2008
//	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


/*@>GERI DON BUTONU *************************/
	function fnGeriDon(){history.back(-1)}
	/********************* GERI DON BUTONU **/

/*@>YONLENDIR BUTONU *************************/
	function fnYonlendir(strURL){location.href=strURL}
	/********************* GERI DON BUTONU **/

/*@>RANDOM KEY GENERATOR *************************/
	function fnRandomKey(strLen,ReplyType,FldId) {
		var KeyChars = "0123456789abcdefghiklmnopqrstuvwxyz";
		var RandomKey = '';
		if(strLen){
			KeyLength = strLen;
		} else{
			KeyLength = 9;
		}
		for (var i=0; i<KeyLength; i++) {
			var RndTmp = Math.floor(Math.random() * KeyChars.length);
			RandomKey += KeyChars.substring(RndTmp,RndTmp+1);
		}
		
		if(ReplyType=="Form"){
			document.getElementById(FldId).value = RandomKey;
		}
		else if(ReplyType=="Html"){
			document.getElementById(FldId).innerHTML = RandomKey;
		}
		else {
			document.write(RandomKey);
		}
	}
	/******************** RANDOM KEY GENERATOR **/
