
<head>
<meta http-equiv="Content-Language" content="tr">
<head>
<meta http-equiv="Content-Language" content="tr">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="keywords" content="ağrı müf, ağrı müftülüğü,ağrı il müftülüğü,odunpazarı müftülüğü,tepebaşı müftülüğü,sivrihisar müftülüğü,çifteler müftülüğü, han müftülüğü,beylikova müftülüğü,inönü müftülüğü" />
<meta name="description" content="ağrı müf, ağrı müftülüğü,ağrı il müftülüğü,odunpazarı müftülüğü,tepebaşı müftülüğü,sivrihisar müftülüğü,çifteler müftülüğü, han müftülüğü,beylikova müftülüğü,inönü müftülüğü" />
</head>


<!----------------------------- TİTLELERİ SAYDAMLAŞTIRMA KODU --------------------------------------->

<script type="text/javascript">
var GLT = {
	// Customization parameters
	titleClassName : "glt-elm",
	suppressAltTooltipsInIE : true,
	timeBeforeShow : 100,
	titleOffsetX : 50,
	titleOffsetY : 10,
	fadeInTitle : true,
	fadeOutTitle : true,
	fadeStartLevel : 0.5,
	originalFadeLevel : 0.9,
	fadeIncrement : 0.1,
	timePerFadeStep : 50,

	// GLT parameters
	titleElm : null,
	titleTextElm : null,
	titleTopImage : null,
	titleBottomImage : null,
	elementsWithTitles : null,
	currentElm : null,
	currentTitle : "",
	currentFadeLevel : 0,
	fadeTimer : null,

	init : function (){
		if(document.getElementById){
			this.elementsWithTitles = getElementsByAttribute(document, "*", "title");
			if(this.elementsWithTitles.length > 0){
				this.titleElm = document.createElement("div");
				this.titleElm.className = this.titleClassName;
				if(this.topImagePath){
					this.titleTopImage = document.createElement("img");
					this.titleTopImage.setAttribute("src", this.topImagePath);
					this.titleElm.appendChild(this.titleTopImage);
				}
				this.titleTextElm = document.createElement("p");
				this.titleElm.appendChild(this.titleTextElm);
				if(this.bottomImagePath){
					this.titleBottomImage = document.createElement("img");
					this.titleBottomImage.setAttribute("src", this.bottomImagePath);
					this.titleElm.appendChild(this.titleBottomImage);
				}
				document.body.appendChild(this.titleElm);
				this.useMSFilter = typeof this.titleElm.style.filter != "undefined";
				this.applyEvents();
			}
		}
	},

	applyEvents : function (){
		var oElm;
		var strClassName;
		for(var i=0; i<this.elementsWithTitles.length; i++){
			oElm = this.elementsWithTitles[i];
			if(this.suppressAltTooltipsInIE){
				oElm.setAttribute("alt", "");
			}
			oElm.onmouseover = GLT.mouseOverElm;
			oElm.onmouseout = GLT.mouseOutElm;
		}
		if(this.clickDocumentToClearFocus){
			this.addEvent(document, "click", function(){FaT.clearFocus();}, false);
		}
	},

	mouseOverElm : function (oEvent){
		var oEvent = (typeof oEvent != "undefined")? oEvent : event;
		if(typeof GLT != "undefined"){
			GLT.startTimer(this, oEvent);
			oEvent.cancelBubble = true;
			oEvent.returnValue = false;
			if(oEvent.stopPropagation){
				oEvent.stopPropagation();
			}
		}
	},

	mouseOutElm : function (oEvent){
		var oEvent = (typeof oEvent != "undefined")? oEvent : event;
		if(typeof GLT != "undefined"){
			GLT.hideTitle(this, oEvent);
		}
	},

	startTimer : function (oElm, oEvent){
		if(!this.currentElm || this.currentElm != oElm || this.fadeTimer > 0){
			if(this.fadeTimer){
				clearTimeout(this.fadeTimer);
			}
			if(this.currentElm){
				this.hideTitle(null, false, true);
			}
			this.currentElm = oElm;
			this.currentTitle = this.currentElm.getAttribute("title");
			this.currentElm.setAttribute("title", "");
			this.currentX = oEvent.clientX;
			this.currentY = oEvent.clientY;
			this.fadeTimer = setTimeout("GLT.showTitle()", GLT.timeBeforeShow);
		}
    },

	stopTimer : function (oElm){
		clearTimeout(GLT.fadeTimer);
    },

	showTitle : function (){
		this.setTitlePos();
		this.titleTextElm.innerHTML = this.currentTitle;
		this.titleElm.style.visibility = "visible";
		if(this.fadeInTitle){
			this.currentFadeLevel = this.fadeStartLevel;
			this.fadeIn();
		}
	},

	hideTitle : function (oElm, oEvent, forceHide){
		if(this.currentElm && (oElm || forceHide)){
			var bIsChildOfCurrentElm = false;
			if(typeof oEvent != "undefined" && typeof oEvent == "object"){
				var oEventTarget = (typeof oEvent.relatedTarget != "undefined")? oEvent.relatedTarget : oEvent.toElement;
				if(oEventTarget){
					while(!bIsChildOfCurrentElm && oEventTarget && oEventTarget.nodeName && oEventTarget.nodeName.search(/body/i) == -1){
						if(oEventTarget == oElm){
							bIsChildOfCurrentElm = true;
							break;
						}
						oEventTarget = oEventTarget.parentNode;
					}
				}
			}
			if(!bIsChildOfCurrentElm){
				this.stopTimer();
				if(this.fadeOutTitle && (typeof forceHide == "undefined" || !forceHide)){
					this.fadeOut();
				}
				else{
					clearTimeout(this.fadeTimer);
					this.currentElm.setAttribute("title", this.currentTitle);
					this.currentElm = null;
					this.titleElm.style.visibility = "hidden";
				}
			}
		}
	},

	setTitlePos : function (){
		var arrScroll = this.getWinSizeAndScroll();
		var intTitleElmWidthAndPos = this.titleElm.offsetWidth + this.currentX + this.titleOffsetX;
		var intDiff = intTitleElmWidthAndPos - arrScroll[0];
		var intX = (intDiff > 0)? (this.currentX - intDiff) : (this.currentX + this.titleOffsetX);
		this.titleElm.style.left = intX + arrScroll[2] + "px";
		this.titleElm.style.top = this.currentY + arrScroll[3] + this.titleOffsetY + "px";
	},

	fadeIn : function (fadeOut){
		this.currentFadeLevel = this.currentFadeLevel + this.fadeIncrement;
		if(this.currentFadeLevel < this.originalFadeLevel){
			this.fadeTimer = setTimeout("GLT.fadeIn()", GLT.timePerFadeStep);
		}
		else{
			this.currentFadeLevel = this.originalFadeLevel;
			clearTimeout(this.fadeTimer);
		}
		this.setFade();
	},

	fadeOut : function (){
		this.currentFadeLevel = this.currentFadeLevel - this.fadeIncrement;
		if(this.currentFadeLevel > this.fadeStartLevel){
			this.fadeTimer = setTimeout("GLT.fadeOut()", GLT.timePerFadeStep);
		}
		else{
			this.currentFadeLevel = this.originalFadeLevel;
			this.hideTitle(null, false, true);
		}
		this.setFade();
	},

	setFade : function (){
		// This line is b/c of a floating point bug in JavaScript
		this.currentFadeLevel = Math.round(this.currentFadeLevel * 10) / 10;
		if(this.titleElm){
			if(this.useMSFilter){
				this.titleElm.style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=" + (this.currentFadeLevel * 100) + ")";
			}
			else{
				this.titleElm.style.opacity = this.currentFadeLevel;
			}
		}
	},

	getWinSizeAndScroll : function (){
		var intWidth = document.body.offsetWidth;
		var intHeight = (typeof window.innerHeight != "undefined")? window.innerHeight : (document.documentElement && document.documentElement.clientHeight > 0)? document.documentElement.clientHeight : document.body.clientHeight;
		var intXScroll = (typeof window.pageXOffset != "undefined")? window.pageXOffset : document.body.scrollLeft;
		var intYScroll = (typeof window.window.pageYOffset != "undefined")? window.window.pageYOffset : (document.documentElement && document.documentElement.scrollTop > 0)? document.documentElement.scrollTop : document.body.scrollTop;
		return [intWidth, intHeight, intXScroll, intYScroll];
	},

	closeSession : function (oEvent){
		this.removeEvent(window, "load", function(){GLT.init();}, false);
		GLT = null;
		delete GLT;
	},

	addEvent : function (oObject, strEvent, oFunction, bCapture){
		if(oObject){
			if(oObject.addEventListener){
				oObject.addEventListener(strEvent, oFunction, bCapture);
			}
			else if(window.attachEvent){
				oObject.attachEvent(("on" + strEvent), oFunction)
			}
		}
	},

	removeEvent : function (oObject, strEvent, oFunction, bCapture){
		if(oObject){
			if(oObject.removeEventListener){
				oObject.removeEventListener(strEvent, oFunction, false);
			}
			else if(window.detachEvent){
				oObject.detachEvent(("on" + strEvent), oFunction)
			}
		}
	}
};
// ---
GLT.addEvent(window, "load", function(){GLT.init();}, false);
// ---
// Utility functions
// ---
function getElementsByAttribute(oElm, strTagName, strAttributeName, strAttributeValue){
	var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
	var arrReturnElements = new Array();
	var oAttributeValue = (typeof strAttributeValue != "undefined")? new RegExp("(^|\\s)" + strAttributeValue + "(\\s|$)") : null;
	var oCurrent;
	var oAttribute;
	for(var i=0; i<arrElements.length; i++){
		oCurrent = arrElements[i];
		oAttribute = oCurrent.getAttribute && oCurrent.getAttribute(strAttributeName);
		if(typeof oAttribute == "string" && oAttribute.length > 0){
			if(typeof strAttributeValue == "undefined" || (oAttributeValue && oAttributeValue.test(oAttribute))){
				arrReturnElements.push(oCurrent);
			}
		}
	}
	return arrReturnElements;
}
// ---
if(typeof Array.prototype.push != "function"){
	Array.prototype.push = ArrayPush;
	function ArrayPush(value){
		this[this.length] = value;
	}
}
</script>

<style>
.glt-elm{
 	position: absolute;
 	left: 0;
 	top: 0;
 	width: 150px;
 	color: #fff;
  font-family: Arial, sans-serif;
 	opacity: 0.9;
 	visibility: hidden;
}

.glt-elm p{
 	background: #666;
 	margin: 0;
 	padding: 0.5em;
}

.glt-elm img{
 	display: block;
}

/* and this CSS for IE, if you want to use transparency: */

.glt-elm{
 	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);
}
</style>

<title>Ağrı İl Müftülüğü</title>


<!----------------------------- TİTLELERİ SAYDAMLAŞTIRMA KODU --------------------------------------->

<title>Ana Sayfa | AĞRI İL MÜFTÜLÜĞÜ </title>
<link rel="stylesheet" type="text/css" href="tema/kirmizi/stil.css">
</head>
<body background="tema/kirmizi/arkaplan.png">




<div align="center">
	<table border="0" cellpadding="0" cellspacing="0" width="935px" height="266">
	<!-- MSTableType="layout" -->
	<tr>
		<td valign="top" colspan="6" height="37">
		<!-- MSCellType="ContentHead" -->
		<table border="0" width="100%" id="table1" style="border-collapse: collapse" background="tema/kirmizi/logoarka.png" height="154">
	<tr>
		<td width="100%">
		<table border="0" width="100%" id="table2" cellpadding="0" style="border-collapse: collapse" height="100">
			<tr>
				<td>

				<a href="default.asp">

				<img border="0" src="tema/kirmizi/tepe.png" width="100%" height="137"></a></td>
			</tr>
			</table>
		</td>
	</tr>
</table>
</td>
	</tr>
	<tr>
		<td valign="top" width="215" background="tema/kirmizi/ortaarka.PNG">
		<!-- MSCellType="NavBody" -->
		

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;</font>İL MÜFTÜMÜZ</b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">
	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td>
 
						<p align="center">
						<img border="0" src="roflbot-JtjA.jpg" width="100" height="112"></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>
		</td>
	</tr>

</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>



<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;MENÜLER</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="default.asp" title="Ana Sayfa" style="text-decoration: none">Ana Sayfa</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="hutbeler.asp" title="Hutbeler" style="text-decoration: none">Hutbeler</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="haberler.asp" title="Haberler" style="text-decoration: none">Haberler</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="Personelimiz.asp" title="Personelimiz" style="text-decoration: none">Personelimiz</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="sayfaek.asp?id=42" title="Camilerimiz" style="text-decoration: none">Camilerimiz</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="dokumanlar.asp" title="Sınav &Döküman" style="text-decoration: none">Sınav &Döküman</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="KuranKurslari.asp" title="Kur'an Kurslarımız" style="text-decoration: none">Kur'an Kurslarımız</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="munhalkadrolar.asp" title="Münhal Kadrolar" style="text-decoration: none">Münhal Kadrolar</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="havadurumu.asp" title="Hava Durumu" style="text-decoration: none">Hava Durumu</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="arama.asp" title="Arama" style="text-decoration: none">Arama</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
 
						<p align="center">-</td>
						<td><font class="yazi" face="Times New Roman"><a href="iletisim.asp" title="İletişim" style="text-decoration: none">İletişim</a></font></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>


</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>


<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;DOSYALAR</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="upload/HizmetSt/w-tarih-09.09.2011.11.04.14.doc">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="img/word.jpg" width="36" height="36"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="upload/HizmetSt/w-tarih-09.09.2011.11.04.14.doc" title="Hizmet Standartları" style="text-decoration: none">&nbsp;Hizmet Standartları</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="upload/HizmetSt/vaaz-tarih-01.04.2011.15.43.27.xls">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="img/excel.jpg" width="36" height="36"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="upload/HizmetSt/vaaz-tarih-01.04.2011.15.43.27.xls" title="Vaaz İrşad" style="text-decoration: none">&nbsp;Vaaz İrşad</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>


</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;</font></b><font color="#FFFFFF">VEDA HUTBESİ</font></td>
	</tr>
</table>
<table border="0" width="100%" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png" cellspacing="1" height="41">
        
<td height="34" align="right" rowspan="2">
<p align="center">
<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollAmount="1" scrollDelay="6" direction="up" height="220" align="center" width="168"><P align=center> </P><P align=center><B><FONT face=Tahoma><SPAN style="FONT-SIZE: 10pt">| Veda Hutbesi |</SPAN></FONT></B></P><P align=center><B><FONT face=Tahoma>Bismillahirrahmanirrahim<BR><BR>EY İNSANLAR! <BR><BR>Sözümü iyi dinleyiniz.Bilmiyorum, belki bu seneden sonra sizinle burada ebedi olarak bir daha birleşemeyeceğiz. </FONT></B></P><P align=center><B><FONT face=Tahoma>İNSANLAR! <BR><BR>Bu günleriniz nasıl mukaddes bir gün ise, bu aylarınız nasıl mukaddes bir ay ise, bu şehriniz (Mekke) nasıl mübarek bir şehir ise, canlarınız, mallarınız da öyle mukaddestir, her türlü tecâvüzden korunmuştur.<BR><BR><BR>ASHABIM! <BR><BR>Yarın Rabbinize kavuşacaksınız ve bugünkü her hal ve hareketinizden muhakkak sorulacaksınız. Sakın benden sonra eski sapıklıklara dönüp de birbirinizin boynunu vurmayınız! Bu vasiyyetimi burada bulunanlar, bulunmayanlara bildirsin! Olabilir ki bildiren kimse, burada bulunup da işitenden daha iyi anlıyarak muhafaza etmiş olur. <BR><BR><BR>ASHABIM! <BR><BR>Kimin yanında bir emanet varsa onu sahibine versin. Faizin her çeşidi kaldırılmıştır, ayağımın altındadır. Lâkin borcunuzun aslını vermek gerektir. Ne zulmediniz, ne de zulme uğrayınız. Allah'ın emriyle faizcilik artık yasaktır. Cahilliyetten kalma bu çirkin âdetin her türlüsü ayağımın altındadır. İlk kaldırdığım fâiz deAbdulmuttalib'in oğlu (amcam) Abbas'ın faizidir. <BR><BR>ASHABIM! <BR><BR>Cahilliyet devrinde güdülen kan dâvâları da tamamen kaldırılmıştır. Kaldırdığım ilk kan davası Abdulmuttalib'in torunu (amcazadem) Rebia'nın kan davasıdır.<BR><BR><BR>İNSANLAR! <BR><BR>Bugün şeytan sizin şu topraklarınızda yeniden tesir ve hakimiyet kurmak gücünü ebedi suretle kaybetmiştir. Fakat siz; bu kaldırdığım şeyler dışında, küçük gördüğünüz işlerde ona uyarsanız bu da onu memnun edecektir. Dininizi korumak için bunlardan da sakınınız! <BR><BR>İNSANLAR!<BR><BR><BR>Kadınların haklarını gözetmenizi ve bu hususta Allah'tan korkmanızı tavsiye ederim. Siz kadınları, Allah emaneti olarak aldınız; onların namuslarını ve iffetlerini Allah adına söz vererek helal edindiniz. Sizin kadınlar üzeridne hakkınız, onların da sizin üzerinizde hakları vardır. Sizin kadınlar üzerindeki </FONT></B></P><P align=center><B><FONT face=Tahoma>hakkınız, onların, aile yuvasını, hoşlanmadığınız hiçbir kimseye çiğnetmemeleridir. Eğer razı olmadığınız herhangi bir kimseyi aile yuvanıza alırlarsa, onları hafifçe döğüp sakındırabilirsiniz. Kadınların da sizin üzerinizdeki hakları, memleket göreneğine göre, her türlü yiyim ve giyimlerini temin etmenizdir.<BR><BR><BR>MÜ'MİNLER!<BR><BR><BR>Size bir emanet bırakıyorum ki ona sıkı sarıldıkça yolunuzu hiç şaşırmazsınız. O emanet Allah Kitabı Kur'andır. </FONT></B></P><P align=center><B><FONT face=Tahoma>MÜ'MİNLER! </FONT></B></P><P align=center><B><FONT face=Tahoma>Sözümü iyi dinleyiniz ve iyi belleyiniz! Müslüman müslümanın kardeşidir, böylece bütün müslümanlar kardeştir. Din kardeşinize ait olan herhangi bir hakka tecavüz başkasına helal değildir. Meğer ki gönül hoşluğu ile kendisine vermiş olsun...<BR><BR><BR>ASHABIM! <BR><BR>Nefsinize zulmetmeyiniz. Nefsinizin de üzerinizde hakkı vardır. <BR><BR>İNSANLAR! <BR><BR>Allah Teala her hak sahibine hakkını (Kur'an'da) vermiştir. Varise vasiyet etmeğe lüzum yoktur. Çocuk kimin döşeğinde doğmuşsa ona aittir. Zina eden için mahrumiyet vardır. Babasından başka bir soy iddia eden soysuz, yahut efendisinden başkasına intisaba kalkan nankör, Allah'ın gazabına, meleklerin lanetine ve bütün müslümanların ilencine uğrasın! Cenab-ı Hak, bu gibi insanların ne tevbelerini, ne de adalet ve şahadetlerini kabul eder. <BR><BR>İNSANLAR! <BR><BR>Rabbiniz birdir. Babanız da birdir; hepiniz Âdem'in çocuklarısınız, Âdem ise topraktandır. Allah yanında en kıymetli olanınız, O'na en çok saygı göstereninizdir. Arabın Arap olmayana -Allah saygısı ölçüsünden başka- bir üstünlüğü yoktur. </FONT></B></P><P align=center><B><FONT face=Tahoma>İNSANLAR! </FONT></B></P><P align=center><B><FONT face=Tahoma>Yarın beni sizden soracaklar, ne diyeceksiniz?<BR><BR>"-Allah'ın elçiliğini ifa ettin, vazifeni yerine getirdin, bize vasiyet ve öğütte bulundun diye şahadet ederiz." (Bunun üzerine Resûl-i Ekrem mübarek şahadet parmağını göğe doğru kaldırarak sonra da cemaat üzerine çevirip indirerek şöyle buyurdu.) <BR><BR>Şahid ol yâ Rab! </FONT></B></P><P align=center><B><FONT face=Tahoma>Şahid ol yâ Rab! </FONT></B></P><P align=center><B><FONT face=Tahoma>Şahid ol yâ Rab!<BR><BR> </FONT></B></P></FONT></FONT></marquee><p align="center">
<a title="İl Müftülüğümüzden En Son Haberler İçin Tıklayınız..." href="haberler.asp">
<img border="0" src="tema/kirmizi/haber_sol.png" width="154" height="127"></a></tr>
					<tr>
						</font></b>

</td>
</tr>
</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>


<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;İSTATİSTİK</font></b></td>
	</tr>
</table>
<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/blokorta.png">

           
<tr>
<td width="50%" style="padding: 3px" align="left" height="25"><b><font class="yazi">
Bugün Tekil</font></b></td>
<td width="5" align="center" height="25"><b><font class="yazi">:&nbsp;</font></b></td>
<td width="480" height="25"><b><font class="yazi">
5
</font></b></td>
</tr>
<tr>
<td width="50%" style="padding: 3px" align="left"><b><font class="yazi">
Bugün Çoğul</font></b></td>
<td width="5" align="center"><b><font class="yazi">:&nbsp;</font></b></td>
<td width="480"><b><font class="yazi">
5
</font></b></td>
</tr>
<tr>
<td width="50%" style="padding: 3px" align="left"><b><font class="yazi">
Toplam Tekil</font></b></td>
<td width="5" align="center"><b><font class="yazi">:&nbsp;</font></b></td>
<td width="480"><b><font class="yazi">
16802
</font></b></td>
</tr>
<tr>
<td width="50%" style="padding: 3px" align="left"><b><font class="yazi">
Toplam Çoğul</font></b></td>
<td width="5" align="center"><b><font class="yazi">:&nbsp;</font></b></td>
<td width="480"><b><font class="yazi">
20328
</font></b></td>
</tr>

</table>

<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>



<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
	<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>		<td height="25">
		<b><font class="tablobasi">&nbsp;</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">

	<tr>
		<td>
<table border="0" width="100%" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png" cellspacing="1" height="41">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td><p>
	<a href="http://www.diyanet.gov.tr/turkish/dy/DiniBilgiler.aspx?KID=7"><img alt="" src="upload/PersonelResim/untitled-tarih-19.12.2011.14.45.58.png" /></a></p>
</td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>
</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
	<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>		<td height="25">
		<b><font class="tablobasi">&nbsp;</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">

	<tr>
		<td>
<table border="0" width="100%" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png" cellspacing="1" height="41">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td><p>
	<a href="http://sorusor.diyanet.gov.tr/"><img alt="" src="upload/PersonelResim/untitled-tarih-27.12.2011.11.18.39.png" /></a></p>
</td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>
</table>
<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>
</td>
		<td valign="top" width="11" background="tema/kirmizi/ortaarka.PNG">
		<!-- MSCellType="ContentBody" -->
		</td>
		<td valign="top" width="100%" background="tema/kirmizi/ortaarka.PNG">
		<!-- MSCellType="ContentBody" -->
		<head>
<meta http-equiv="Content-Language" content="tr">
</head>



<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="79">
	<!-- MSTableType="nolayout" -->
	<tr>
		<td valign="top" height="19" background="tema/kirmizi/tablobasi.png">
		<!-- MSCellType="DecArea" -->
		<font class="tablobasi">&nbsp;Her Güne Bir Ayet Bir Hadis</font></td>
	</tr>
	<tr>
		<td valign="top" width="100%" height="100%" background="tema/kirmizi/blokorta.png">
		<!-- MSCellType="NavBody" -->
		<p style="text-align: center">
	&nbsp;<iframe align="center" border="0" frameborder="0" height="180" scrolling="no" src="http://www.delikan.net/rastgele-kuran.php" style="width: 70.68%; height: 102px" width="80%"></iframe></p></td>
	</tr>
</table>

</div>

		<br>
		






<table cellpadding="0" cellspacing="0" width="100%">
	<!-- MSTableType="layout" -->
	<tr>
		<td height="100%" align="center">



<!--------------------------------------- MANSET HABER KODLARI --------------------------------------->
<style type="text/css">
/* Reset style */
* { margin:0; padding:0; word-break:break-all; }
a { color:#0287CA; text-decoration:none; }
	a:hover { text-decoration:underline; }
fieldset, img { border:none; }
legend { display:none; }
em, strong, cite, th { font-style:normal; font-weight:normal; }

/* iFocus style */
#ifocus { width:500px; height:240px; margin:20px; border:1px solid #DEDEDE; background:#F8F8F8; }
	#ifocus_pic { display:inline; position:relative; float:left; width:385px; height:220px; overflow:hidden; margin:10px 0 0 10px; }
		#ifocus_piclist { position:absolute; }
		#ifocus_piclist li { width:385px; height:220px; overflow:hidden; }
		#ifocus_piclist img { width:385px; height:220px; }
	#ifocus_btn { display:inline; float:right; width:91px; margin:9px 9px 0 0; }
		#ifocus_btn li { width:91px; height:57px; cursor:pointer; opacity:0.5; -moz-opacity:0.5; filter:alpha(opacity=50); }
		#ifocus_btn img { width:75px; height:45px; margin:7px 0 0 11px; }
		#ifocus_btn .current { background: url(resimler/haber.gif) no-repeat; opacity:1; -moz-opacity:1; filter:alpha(opacity=100); }
	#ifocus_opdiv { position:absolute; left:0; bottom:0; width:410px; height:35px; background:#000; opacity:0.5; -moz-opacity:0.5; filter:alpha(opacity=50); }
	#ifocus_tx { position:absolute; left:8px; bottom:8px; color:#FFF; }
		#ifocus_tx .normal { display:none; }
</style>

<script type="text/javascript">
function $(id) { return document.getElementById(id); }

function addLoadEvent(func){
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function(){
			oldonload();
			func();
		}
	}
}

function moveElement(elementID,final_x,final_y,interval) {
  if (!document.getElementById) return false;
  if (!document.getElementById(elementID)) return false;
  var elem = document.getElementById(elementID);
  if (elem.movement) {
    clearTimeout(elem.movement);
  }
  if (!elem.style.left) {
    elem.style.left = "0px";
  }
  if (!elem.style.top) {
    elem.style.top = "0px";
  }
  var xpos = parseInt(elem.style.left);
  var ypos = parseInt(elem.style.top);
  if (xpos == final_x && ypos == final_y) {
		return true;
  }
  if (xpos < final_x) {
    var dist = Math.ceil((final_x - xpos)/10);
    xpos = xpos + dist;
  }
  if (xpos > final_x) {
    var dist = Math.ceil((xpos - final_x)/10);
    xpos = xpos - dist;
  }
  if (ypos < final_y) {
    var dist = Math.ceil((final_y - ypos)/10);
    ypos = ypos + dist;
  }
  if (ypos > final_y) {
    var dist = Math.ceil((ypos - final_y)/10);
    ypos = ypos - dist;
  }
  elem.style.left = xpos + "px";
  elem.style.top = ypos + "px";
  var repeat = "moveElement('"+elementID+"',"+final_x+","+final_y+","+interval+")";
  elem.movement = setTimeout(repeat,interval);
}

function classNormal(iFocusBtnID,iFocusTxID){
	var iFocusBtns= $(iFocusBtnID).getElementsByTagName('li');
	var iFocusTxs = $(iFocusTxID).getElementsByTagName('li');
	for(var i=0; i<iFocusBtns.length; i++) {
		iFocusBtns[i].className='normal';
		iFocusTxs[i].className='normal';
	}
}

function classCurrent(iFocusBtnID,iFocusTxID,n){
	var iFocusBtns= $(iFocusBtnID).getElementsByTagName('li');
	var iFocusTxs = $(iFocusTxID).getElementsByTagName('li');
	iFocusBtns[n].className='current';
	iFocusTxs[n].className='current';
}

function iFocusChange() {
	if(!$('ifocus')) return false;
	$('ifocus').onmouseover = function(){atuokey = true};
	$('ifocus').onmouseout = function(){atuokey = false};
	var iFocusBtns = $('ifocus_btn').getElementsByTagName('li');
	var listLength = iFocusBtns.length;
	iFocusBtns[0].onmouseover = function() {
		moveElement('ifocus_piclist',0,0,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',0);
	}
	if (listLength>=2) {
		iFocusBtns[1].onmouseover = function() {
			moveElement('ifocus_piclist',0,-225,5);
			classNormal('ifocus_btn','ifocus_tx');
			classCurrent('ifocus_btn','ifocus_tx',1);
		}
	}
	if (listLength>=3) {
		iFocusBtns[2].onmouseover = function() {
			moveElement('ifocus_piclist',0,-450,5);
			classNormal('ifocus_btn','ifocus_tx');
			classCurrent('ifocus_btn','ifocus_tx',2);
		}
	}
	if (listLength>=4) {
		iFocusBtns[3].onmouseover = function() {
			moveElement('ifocus_piclist',0,-675,5);
			classNormal('ifocus_btn','ifocus_tx');
			classCurrent('ifocus_btn','ifocus_tx',3);
		}
	}
}

setInterval('autoiFocus()',5000);
var atuokey = false;
function autoiFocus() {
	if(!$('ifocus')) return false;
	if(atuokey) return false;
	var focusBtnList = $('ifocus_btn').getElementsByTagName('li');
	var listLength = focusBtnList.length;
	for(var i=0; i<listLength; i++) {
		if (focusBtnList[i].className == 'current') var currentNum = i;
	}
	if (currentNum==0&&listLength!=1 ){
		moveElement('ifocus_piclist',0,-225,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',1);
	}
	if (currentNum==1&&listLength!=2 ){
		moveElement('ifocus_piclist',0,-450,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',2);
	}
	if (currentNum==2&&listLength!=3 ){
		moveElement('ifocus_piclist',0,-675,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',3);
	}
	if (currentNum==3 ){
		moveElement('ifocus_piclist',0,0,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',0);
	}
	if (currentNum==1&&listLength==2 ){
		moveElement('ifocus_piclist',0,0,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',0);
	}
	if (currentNum==2&&listLength==3 ){
		moveElement('ifocus_piclist',0,0,5);
		classNormal('ifocus_btn','ifocus_tx');
		classCurrent('ifocus_btn','ifocus_tx',0);
	}
}
addLoadEvent(iFocusChange);
</script>

<!--------------------------------------- MANSET HABER KODLARI --------------------------------------->

<div id="ifocus">
<div id="ifocus_pic">
		<div id="ifocus_piclist" style="left:0; top:0;">
			<ul style="list-style-type: none">	
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=197">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/imagesCAD7076X-tarih-28.12.2011.10.04.05.jpg" alt="2012 YILI UMRE KAYITLARI" style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=196">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/kurban-tarih-31.10.2011.09.35.50.jpg" alt="Ağrı il genelinde Kurban kesim yerleri şu şekilde belirlenmiştir." style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=195">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/8830-tarih-11.10.2011.11.17.45.jpg" alt="Ağrıdan kutsal topraklara gitmek için hazırlanan 80 kişilik ilk hacı kafilemiz yola çıktı." style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=194">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/H (Kopyala)-tarih-07.10.2011.11.10.35.jpg" alt="AĞRI İL MÜFTÜLÜĞÜ YÜZ YÜZE VAAZ HİZMET İÇİ EĞİTİM KURSU" style="border: medium none" /></a></li>

			</ul>
		</div>
		<div id="ifocus_opdiv" style="position: absolute; left: 0px; bottom: 0px; height: 64px"></div>
		<div id="ifocus_tx" style="position: absolute; left: 6px; bottom: 25px; height:37px; width:392px" align="left">
			<ul style="list-style-type: none">

				<li class="current"><font size="4" color="#A5ADFA">
				
				<table border="0" width="100%" height="48%" id="table1" cellspacing="0" cellpadding="0">
					<tr>
						<td height="19" width="100%"><font color="#FFFFFF">
						<a href="haberoku.asp?id=197"><font color="#FFFFFF">2012 YILI UMRE KAYITLARI</font></a></font></td>
					</tr>
				</table></li>
				

				<li class="current"><font size="4" color="#A5ADFA">
				
				<table border="0" width="100%" height="48%" id="table1" cellspacing="0" cellpadding="0">
					<tr>
						<td height="19" width="100%"><font color="#FFFFFF">
						<a href="haberoku.asp?id=196"><font color="#FFFFFF">Ağrı il genelinde Kurban kesim yerleri şu şekilde belirlenmiştir.</font></a></font></td>
					</tr>
				</table></li>
				

				<li class="current"><font size="4" color="#A5ADFA">
				
				<table border="0" width="100%" height="48%" id="table1" cellspacing="0" cellpadding="0">
					<tr>
						<td height="19" width="100%"><font color="#FFFFFF">
						<a href="haberoku.asp?id=195"><font color="#FFFFFF">Ağrıdan kutsal topraklara gitmek için hazırlanan 80 kişilik ilk hacı kafilemiz yola çıktı.</font></a></font></td>
					</tr>
				</table></li>
				

				<li class="current"><font size="4" color="#A5ADFA">
				
				<table border="0" width="100%" height="48%" id="table1" cellspacing="0" cellpadding="0">
					<tr>
						<td height="19" width="100%"><font color="#FFFFFF">
						<a href="haberoku.asp?id=194"><font color="#FFFFFF">AĞRI İL MÜFTÜLÜĞÜ YÜZ YÜZE VAAZ HİZMET İÇİ EĞİTİM KURSU</font></a></font></td>
					</tr>
				</table></li>
				

</ul>

		</div>
	</div>

	<div id="ifocus_btn">

		<ul style="list-style-type: none">
		
			<li class="current">
			<a nmouseover="ddrivetip(' 2012 YILI UMRE KAYITLARI ')" onmouseout=hideddrivetip() href="haberoku.asp?id=197" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/imagesCAD7076X-tarih-28.12.2011.10.04.05.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' Ağrı il genelinde Kurban kesim yerleri şu şekilde belirlenmiştir. ')" onmouseout=hideddrivetip() href="haberoku.asp?id=196" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/kurban-tarih-31.10.2011.09.35.50.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' Ağrıdan kutsal topraklara gitmek için hazırlanan 80 kişilik ilk hacı kafilemiz yola çıktı. ')" onmouseout=hideddrivetip() href="haberoku.asp?id=195" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/8830-tarih-11.10.2011.11.17.45.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' AĞRI İL MÜFTÜLÜĞÜ YÜZ YÜZE VAAZ HİZMET İÇİ EĞİTİM KURSU ')" onmouseout=hideddrivetip() href="haberoku.asp?id=194" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/H (Kopyala)-tarih-07.10.2011.11.10.35.jpg" style="border: medium none"></a></font>
			</li>
		
		</ul>

	
</div>
</div>
</div>

</body>&nbsp;</td>
	</tr>
</table>

		<br>
		

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25"><b><font class="tablobasi">SON HUTBELER</font></b></td>
	</tr>
</table>
<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/blokorta.png">

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
1-</font></b></td><td width="229"><font class="sonlar"><a title="2012 YILI ŞUBAT AYI İLK CUMADA OKUNACAK BAŞKANLIK HUTBESİ" href="hutbeindir.asp?id=168">2012 YILI ŞUBAT AYI İLK CUMADA OKUNACAK BAŞKANLIK HUTBESİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">10</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
2-</font></b></td><td width="229"><font class="sonlar"><a title="2012&nbsp;YILI&nbsp;ŞUBAT&nbsp;AYI&nbsp;HUTBELERİ" href="hutbeindir.asp?id=167">2012&nbsp;YILI&nbsp;ŞUBAT&nbsp;AYI&nbsp;HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">17</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
3-</font></b></td><td width="229"><font class="sonlar"><a title="2012 YILI OCAK AYI HUTBELERİ" href="hutbeindir.asp?id=165">2012 YILI OCAK AYI HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">433</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
4-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI ARALIK AYI HUTBELERİ" href="hutbeindir.asp?id=162">2011 YILI ARALIK AYI HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">800</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
5-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI KASIM AYI HUTBELERİ" href="hutbeindir.asp?id=161">2011 YILI KASIM AYI HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">692</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
6-</font></b></td><td width="229"><font class="sonlar"><a title="2011&nbsp;YILI&nbsp;EKİM&nbsp;AYI&nbsp;&nbsp;HUTBELERİ" href="hutbeindir.asp?id=160">2011&nbsp;YILI&nbsp;EKİM&nbsp;AYI&nbsp;&nbsp;HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">1226</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
7-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI EYLÜL AYI  HUTBELERİ" href="hutbeindir.asp?id=159">2011 YILI EYLÜL AYI  HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">1040</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
8-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI AĞUSTOS AYI HUTBELERİ" href="hutbeindir.asp?id=158">2011 YILI AĞUSTOS AYI HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">1124</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
9-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI TEMMUZ HUTBELERİ" href="hutbeindir.asp?id=157">2011 YILI TEMMUZ HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">1046</font></i></td>
							
</tr><tr>

           
<td width="2%" style="padding: 3px" align="center"><b>
<font class="yazi" color="#666666">
10-</font></b></td><td width="229"><font class="sonlar"><a title="2011 YILI HAZİRAN HUTBELERİ" href="hutbeindir.asp?id=156">2011 YILI HAZİRAN HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">995</font></i></td>
							
</tr><tr>

</table>

		<br>
		<head>
<meta http-equiv="Content-Language" content="tr">
</head>



<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="79">
	<!-- MSTableType="nolayout" -->
	<tr>
		<td valign="top" height="19" background="tema/kirmizi/tablobasi.png">
		<!-- MSCellType="DecArea" -->
		<font class="tablobasi">&nbsp;KUR'ANI KERİM VE MEALİ</font></td>
	</tr>
	<tr>
		<td valign="top" width="452" height="100%" background="tema/kirmizi/blokorta.png">
		<!-- MSCellType="NavBody" -->
		<p>
	<a href="http://www.diyanet.gov.tr/kuran/default.asp"><img alt="" height="60" src="upload/PersonelResim/banner-tarih-19.12.2011.14.49.47.gif" width="500" /></a></p>
</td>
	</tr>
</table>

</div>


<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="79">
	<!-- MSTableType="nolayout" -->
	<tr>
		<td valign="top" height="19" background="tema/kirmizi/tablobasi.png">
		<!-- MSCellType="DecArea" -->
		<font class="tablobasi">&nbsp;KURAN&nbsp;ÖĞRENİYORUM</font></td>
	</tr>
	<tr>
		<td valign="top" width="452" height="100%" background="tema/kirmizi/blokorta.png">
		<!-- MSCellType="NavBody" -->
		<p>
	<a href="http://http://www.diyanet.gov.tr/turkish/alfabe/index.htm"><img alt="" src="upload/PersonelResim/images-tarih-21.12.2011.10.16.32.jpg" /></a></p>
</td>
	</tr>
</table>

</div>

		</td>
		<td valign="top" width="11" background="tema/kirmizi/ortaarka.PNG">
		<!-- MSCellType="ContentBody" -->
		&nbsp;</td>
		<td valign="top" width="253" background="tema/kirmizi/ortaarka.PNG" align="right">
		<!-- MSCellType="NavBody2" -->
		

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="100%" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;DİĞER MENÜLER</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table1" height="25">

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=13" title="İl Müftümüz" style="text-decoration: none">&nbsp;İl Müftümüz</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=37" title="Eski Müftülerimiz" style="text-decoration: none">&nbsp;Eski Müftülerimiz</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=36" title="Müdürlerimiz" style="text-decoration: none">&nbsp;Müdürlerimiz</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=34" title="TDV Ağrı" style="text-decoration: none">&nbsp;TDV Ağrı</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=40" title="Diyanet Yayınları Satış Yeri" style="text-decoration: none">&nbsp;Diyanet Yayınları Satış Yeri</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=39" title="Hizmet Standartları" style="text-decoration: none">&nbsp;Hizmet Standartları</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=33" title="Çocuklar İçin" style="text-decoration: none">&nbsp;Çocuklar İçin</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="100%" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="100%" id="table4">
					<tr>
						<td width="15">
<p align="center">-</td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a href="sayfa.asp?id=35" title="İletişim" style="text-decoration: none">&nbsp;İletişim</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>


</table>
<table border="0" width="250px" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>
>


<head>
<meta http-equiv="Content-Language" content="tr">
</head>

<base target="_blank">

<div align="center">

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="18%">
	<tr>
		<td>

<table border="0" width="250px" id="table1" background="tema/kirmizi/tablobasi.png" style="border-collapse: collapse">
	<tr>
		<td height="20" width="250px">
		<p align="center"><font color="#FFFFFF"><b>LÜZUMLU LİNKLER</b></font></td>
	</tr>
</table>
<table border="1" width="100%" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png" cellspacing="1" height="223" bordercolor="#EAEAE8">
<tr>
<td height="50" align="right" width="5%" rowspan="2">
<img border="0" src="img/dinimenu/bannerdinibilgiler.png" width="48" height="49"></td>
<td height="21" align="left" width="100%">
<p align="left"><b><font color="#008080">Dini Bilgiler</font></b></td>
</tr>
<tr>
<td height="29" align="left" width="100%">
<address>
<font size="2">
	-
<a href="http://www.diyanet.gov.tr/turkish/dy/dinibilgiler.aspx?KID=2" style="text-decoration: none">Dinimiz 
Hakkında Merak </a></font>
</address>
<address>
	<font size="2">
	<a href="http://www.diyanet.gov.tr/turkish/dy/dinibilgiler.aspx?KID=2" style="text-decoration: none">Ettikleriniz</a></font></address>
</td>
</tr>
<tr>
<td height="56" align="right" width="5%" rowspan="2" valign="top">
<img border="0" src="img/dinimenu/bannerwebkutuphanesi.png" width="49" height="56"></td>
<td height="21" align="left" width="100%">
<font color="#008080"><b>Web Kütüphanesi</b></font><td height="56" align="right" width="2%" rowspan="2">
&nbsp;</td></tr>
<tr>
<td height="34" align="left" width="100%">
<dl>
	
	<address>
		<font size="2">
	<a target="_blank" href="http://www.diyanet.gov.tr/turkish/dy/Liste.aspx">-Mesleki,dini, ilmi,edebi</a></font></address>
		<address>
		<font size="2">
		<a target="_blank" href="http://www.diyanet.gov.tr/turkish/dy/Liste.aspx">eserlerimizi görebilirsiniz</a></font></address>

	</td>
</tr>
<tr>
<td height="44" align="right" width="5%" rowspan="2">
<img border="0" src="img/dinimenu/bannerdinisorular.png" width="51" height="51"></td>
<td height="21" align="left" width="100%">
<font color="#008080"><b>Dini Sorular</b></font></td>
</tr>
<tr>
<td height="31" align="left" width="100%">
<address>
	<font size="2">-</font><a target="_blank" href="http://sorusor.diyanet.gov.tr/"><font size="2">Dini sorularınıza 
buradan cevap bulabilirsiniz</font></a></address>
</td>
</tr>
<tr>
<td height="53" align="right" width="5%" rowspan="2">
<address align="center">

<img border="0" src="img/dinimenu/bannerkuran.png" width="52" height="51"></address>
</td>
<td height="15" align="left" width="100%">
<font color="#008080"><b>Kur'an-ı Kerim ve Meali</b></font></td>
<td height="53" align="right" width="2%" rowspan="2">
&nbsp;</td>
</tr>
<tr>
<td height="33" align="left" width="100%">
<address>
		<a target="_blank" href="http://www.diyanet.gov.tr/kuran/default.asp"><font size="2">
	Kur'an-ı Kerim ve Mea'line buradan ulaşabilirsiniz</font></a></address>
</td>
</tr>
</address>
</tr>
<tr>
</font>
</b>
</td>
</tr>
</table>
		</td>
	</tr>
</table></div>
<table border="0" width="250px" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>


<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="250px" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;BAĞLANTILAR</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="250" id="table1" height="25">

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.diyanet.gov.tr/turkish/DIYANET/2011cocuk/aralik.pdf">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/images-tarih-19.12.2011.14.18.46.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="ÇOCUK DERGİSİ" style="text-decoration: none" target="_blank" href="http://www.diyanet.gov.tr/turkish/DIYANET/2011cocuk/aralik.pdf">&nbsp;ÇOCUK DERGİSİ</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.camiyiseviyorum.com/index.html">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/untitled-tarih-05.10.2011.11.37.44.png" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="camiyiseviyorum" style="text-decoration: none" target="_blank" href="http://www.camiyiseviyorum.com/index.html">&nbsp;camiyiseviyorum</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.mekan360.com/360fx_agriibrahimcecenunigenelgorunum,S.html">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/da-tarih-26.07.2011.21.41.00.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Ağrı'da sanal bir gezinti yapın" style="text-decoration: none" target="_blank" href="http://www.mekan360.com/360fx_agriibrahimcecenunigenelgorunum,S.html">&nbsp;Ağrı'da sanal bir gezinti yapın</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.diyanet.gov.tr/turkish/dy/default.aspx">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/diyanetlogo.png" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Diyanet İşleri Başkanlığı" style="text-decoration: none" target="_blank" href="http://www.diyanet.gov.tr/turkish/dy/default.aspx">&nbsp;Diyanet İşleri Başkanlığı</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://sorusor.diyanet.gov.tr/">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/2-tarih-29.07.2011.09.23.04.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Dini Sorular" style="text-decoration: none" target="_blank" href="http://sorusor.diyanet.gov.tr/">&nbsp;Dini Sorular</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.diyanetvakfi.org.tr/">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/tdvlogo.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Türkiye Diyanet Vakfı" style="text-decoration: none" target="_blank" href="http://www.diyanetvakfi.org.tr/">&nbsp;Türkiye Diyanet Vakfı</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.diyanet.gov.tr/turkish/dy/WebYayin.aspx?ID=7">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/il-tarih-29.07.2011.09.24.53.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="İlmihal Bilgileri" style="text-decoration: none" target="_blank" href="http://www.diyanet.gov.tr/turkish/dy/WebYayin.aspx?ID=7">&nbsp;İlmihal Bilgileri</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.agri.gov.tr/">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/agr_valisi-tarih-24.04.2011.11.11.41.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Ağrı Valiliği" style="text-decoration: none" target="_blank" href="http://www.agri.gov.tr/">&nbsp;Ağrı Valiliği</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://www.merhamet.org/">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/linkler/merhamet.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Merhamet Eğitimi" style="text-decoration: none" target="_blank" href="http://www.merhamet.org/">&nbsp;Merhamet Eğitimi</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="http://egitek.meb.gov.tr/Sinavlar/index.asp">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/meb2-tarih-25.04.2011.11.07.18.jpg" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Milli Eğitim Bakanlığı" style="text-decoration: none" target="_blank" href="http://egitek.meb.gov.tr/Sinavlar/index.asp">&nbsp;Milli Eğitim Bakanlığı</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td width="15">
<p align="center">
		<b><font class="tablobasi">
		<a href="https://ebordro.muhasebat.gov.tr/Bordro/gen/login.htm">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/ebodro.png" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="E-Bordro" style="text-decoration: none" target="_blank" href="https://ebordro.muhasebat.gov.tr/Bordro/gen/login.htm">&nbsp;E-Bordro</a></font></b></td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>


</table>
<table border="0" width="250px" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>


<table border="0" width="250px" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>

<table  class="cerceve"cellpadding="0" cellspacing="0" border="0" width="250px" background="tema/kirmizi/tablobasi.png">
	<tr>
		<td height="25" width="20">
		<p align="center">
		<b><font class="tablobasi">
		<img border="0" src="tema/kirmizi/ok.png" width="15" height="15"></font></b></td>
		<td height="25">
		<b><font class="tablobasi">&nbsp;İlmihal&nbsp;Köşemiz</font></b></td>
	</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="250px" id="table1" height="25">

	<tr>
		<td>
		<table border="1" cellpadding="0" width="250px" id="table3" style="border-collapse: collapse" background="tema/kirmizi/blokorta.png">
			<tr>
				<td>
				<table border="0" cellspacing="0" width="250px" id="table4">
					<tr>
						<td><p>
	<a href="http://www.ilahi100.com/ilmihal.html"><img alt="İlmihal Bilgileri 1" height="150" src="http://img.webme.com/pic/y/yukselugurluoglu/ilmihal.jpg" width="100" /></a> <a href="http://www.ilahi100.com/ilmihal.html"><img alt="İlmihal Bilgileri 2" height="150" src="http://img.webme.com/pic/y/yukselugurluoglu/ilmihal2.jpg" width="100" /></a></p>
</td>
					</tr>
				</table>
				</td>
			</tr>
		</table>

		</td>
	</tr>
</table>
<table border="0" width="250px" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="6"></td>
	</tr>
</table>
</td>
		<td valign="top" height="205" width="12" background="tema/kirmizi/ortaarka.PNG" align="right">
		<!-- MSCellType="NavBody2" -->
		&nbsp;</td>
	</tr>
	<tr>
		<td valign="top" colspan="6" height="1">
		<!-- MSCellType="ContentFoot" -->
		&nbsp;</td>
	</tr>
	<tr>
		<td valign="top" colspan="6" height="24">
		<!-- MSCellType="ContentFoot" -->
		<div align="center">
	<table cellpadding="0" width="935" id="table1" style="border-style:none; border-collapse: collapse" border="0">
	<tr>
		<td>
<div align="center">
<table border="0" width="100%" id="table2" cellpadding="0" style="border-collapse: collapse" background="tema/kirmizi/ustorta.png">
		<tr>
			<td width="920" colspan="3" height="5"></td>
		</tr>
		<tr>
			<td width="164" height="23"><i>
			<font face="Times New Roman" size="2" color="#666666"><b>&nbsp; İp:&nbsp; 38.107.179.217
			</b></font></i></td>
			<td width="151" height="23">&nbsp;</td>
			<td width="605" height="23">
			<p align="center"><body style="text-align: ">

<table border="0" width="100%" id="table1" cellpadding="0" style="border-collapse: collapse">
<form action="uyegiris.asp" method="post">
	<tr>
		<td align="center">
		<p align="right"><b><font class="yazi">ÜYE ADI:&nbsp; </font></b></td>
		<td align="center"><font size="1" face="Times New Roman">
		<span style="font-size: 8pt"><font color="#666666" size="1"> 
				<input  title="Kullanıcı Adı" name="kullaniciadi" size="12">&nbsp; </font></span></font></td>
		<td align="center">
		<p align="right"><b><font class="yazi">ŞİFRE:</font></b></td>
		<td align="center" width="130"><font size="1" face="Times New Roman">
		<span style="font-size: 8pt"><font color="#666666" size="1"> 
				<input type="password"  title="Şifre Buraya" name="sifre" size="12"></font></span></font></td>
		<td align="center"><b>
		<font face="Times New Roman" style="font-size: 8pt" color="#666666">
		<label>
        <input type="image" name="imageField" src="resimler/gonder.png"></label></font></b></td>
		<td align="center" width="27">&nbsp;</td>
		<td align="center"><b><font class="yazi">
		<a href="vural"  title="Şifremi Unuttum" onClick="window.name='vural';window.open('sifrehatirlat.asp','new','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no, resizable=no,copyhistory=no,width=250,height=200'); return false;" style="text-decoration: none">
		<b><font class="uyelik">ŞİFRE HATIRLAT</font></b></a></td>
	</tr>
</form>
</table>
</td>
		</tr>
		<tr>
			<td width="164" height="19"></td>
			<td width="151" height="19"></td>
			<td width="605" height="19"></td>
		</tr>
		</table>
</div></td>
	</tr>
</table></div>

<div align="center">
<table border="0" width="935" id="table1" style="border-collapse: collapse" background="tema/kirmizi/copy.png">
	<tr>
		<td width="64"></td>
		<td width="1123" align="center" height="30"><i></b>
		<font class="copyright"><b><font color="#FFFFFF">Adres : Fatih Mah.Kanuni Cad. Pınar Sok. No: 5 Telefon  :  0 472  215 32 36 Faks      :  0 472  216 52 23 e-posta : agrimuf@diyanet.gov.tr</font></b></font></i></td>
		<td width="49"></td>
	</tr>
</table>
</div>

</td>
	</tr>
</table>
</div>
