
<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="http://www.diyanet.gov.tr/turkish/basiliyayin/web_kitap.asp?yid=25" title="Örnek Vaazlar" style="text-decoration: none">Örnek Vaazlar</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="http://hac.diyanet.gov.tr/" title="Hac ve Umre Hizmetleri" style="text-decoration: none">Hac ve Umre Hizmetleri</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="Bize Ulaşın" style="text-decoration: none">Bize Ulaşın</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="uyeol.asp" title="Sitemize Üye Olun" style="text-decoration: none">Sitemize Üye Olun</a></font></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;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/0902-tarih-09.02.2012.16.39.10.doc">
		<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/0902-tarih-09.02.2012.16.39.10.doc" title="Bayanlar İçin İrşad Programı" style="text-decoration: none">&nbsp;Bayanlar İçin İrşad Programı</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/h.h.l-tarih-23.02.2012.16.15.29.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/h.h.l-tarih-23.02.2012.16.15.29.xls" title="Hutbe Hazırlama Listesi" style="text-decoration: none">&nbsp;Hutbe Hazırlama Listesi</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/3ayvip-tarih-10.02.2012.11.16.21.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/3ayvip-tarih-10.02.2012.11.16.21.doc" title="1.Dönem Vaaz İrşat Programı" style="text-decoration: none">&nbsp;1.Dönem Vaaz İrşat Programı</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/3vp-tarih-23.02.2012.16.18.16.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/3vp-tarih-23.02.2012.16.18.16.doc" title="3 Aylık Vaaz Programı" style="text-decoration: none">&nbsp;3 Aylık Vaaz Programı</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/kpc-tarih-24.02.2012.09.31.36.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/kpc-tarih-24.02.2012.09.31.36.doc" title="Kur'an Öğretimi Programı Uygulanan Camiler" style="text-decoration: none">&nbsp;Kur'an Öğretimi Programı Uygulanan </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">
49
</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">
50
</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">
24463
</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">
30653
</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>


</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>


		<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=228">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/A-tarih-18.05.2012.11.21.22.jpg" alt="İL MÜFTÜLÜĞÜMÜZ KERMES DÜZENLEDİ" style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=227">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/C-tarih-08.05.2012.16.34.53.jpg" alt="KUR’AN KURSLARIMIZ ARASINDA BİLGİ YARIŞMASI YAPILDI" style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=226">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/1-tarih-07.05.2012.11.00.33.jpg" alt="KUR’AN KURSLARI ARASI HAFIZLIK YARIŞMASI " style="border: medium none" /></a></li>
			
			
			<li style="list-style-type: none"><a href="haberoku.asp?id=223">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/MAN-tarih-04.05.2012.09.58.14.jpg" alt="KURAN-I KERİM’İ YÜZÜNDEN GÜZEL OKUMA YARIŞMASI " 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=228"><font color="#FFFFFF">İL MÜFTÜLÜĞÜMÜZ KERMES DÜZENLEDİ</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=227"><font color="#FFFFFF">KUR’AN KURSLARIMIZ ARASINDA BİLGİ YARIŞMASI YAPILDI</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=226"><font color="#FFFFFF">KUR’AN KURSLARI ARASI HAFIZLIK YARIŞMASI </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=223"><font color="#FFFFFF">KURAN-I KERİM’İ YÜZÜNDEN GÜZEL OKUMA YARIŞMASI </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(' İL MÜFTÜLÜĞÜMÜZ KERMES DÜZENLEDİ ')" onmouseout=hideddrivetip() href="haberoku.asp?id=228" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/A-tarih-18.05.2012.11.21.22.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' KUR’AN KURSLARIMIZ ARASINDA BİLGİ YARIŞMASI YAPILDI ')" onmouseout=hideddrivetip() href="haberoku.asp?id=227" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/C-tarih-08.05.2012.16.34.53.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' KUR’AN KURSLARI ARASI HAFIZLIK YARIŞMASI  ')" onmouseout=hideddrivetip() href="haberoku.asp?id=226" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/1-tarih-07.05.2012.11.00.33.jpg" style="border: medium none"></a></font>
			</li>

			<li class="current">
			<a nmouseover="ddrivetip(' KURAN-I KERİM’İ YÜZÜNDEN GÜZEL OKUMA YARIŞMASI  ')" onmouseout=hideddrivetip() href="haberoku.asp?id=223" style="text-decoration: none">
			<img onerror="src = 'resimler/resimyok.png'" src="upload/HaberResim/MAN-tarih-04.05.2012.09.58.14.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 MAYIS AYI HUTBELERİ" href="hutbeindir.asp?id=174">2012 YILI MAYIS AYI HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">484</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;NİSAN&nbsp;AYI&nbsp;HUTBELERİ" href="hutbeindir.asp?id=170">2012&nbsp;YILI&nbsp;NİSAN&nbsp;AYI&nbsp;HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">691</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&nbsp;YILI&nbsp;MART&nbsp;AYI&nbsp;HUTBELERİ" href="hutbeindir.asp?id=169">2012&nbsp;YILI&nbsp;MART&nbsp;AYI&nbsp;HUTBELERİ</font></td>
							

<td width="20" align="center"><i><font class="sayac">794</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="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">1117</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="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">799</font></i></td>
							
</tr><tr>

</table>

		<br>
		<head>
<meta http-equiv="Content-Language" content="tr">
</head>


		</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=42" title="Aile İrşat ve Rehberlik Bürosu" style="text-decoration: none">&nbsp;Aile İrşat ve Rehberlik Bürosu</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.kardeslikahlaki.org/">
		<img border="0" onerror="src = 'resimler/resimyok.png'" src="upload/Linkler/image001-tarih-10.04.2012.15.35.27.gif" width="62" height="48"></a></font></b></td>
						<td><b><font class="yazi" face="Tahoma">&nbsp;<a title="Kardeşlik Ahlakı" style="text-decoration: none" target="_blank" href="http://www.kardeslikahlaki.org/">&nbsp;Kardeşlik Ahlakı</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>


</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;DUYURU / ETKİNLİKLER</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><div align="left">
	<table cellpadding="0" cellspacing="0" height="380" style="width: 231px; height: 380px" width="231">
<!-- MSTableType="layout" -->		<tbody>
			<tr>
				<td background="http://img7.imageshack.us/img7/2271/06kodbankstrgg.gif" height="250" valign="middle" width="221">
					<p align="center">
						<font color="#ffffff"><marquee direction="up" left="5" onmouseout_fckprotectedatt=" onmouseout=" onmouseout_fckprotectedatt_fckprotectedatt_fckprotectedatt=" onmouseout_fckprotectedatt_fckprotectedatt=" onmouseover_fckprotectedatt=" onmouseover=" onmouseover_fckprotectedatt_fckprotectedatt_fckprotectedatt=" onmouseover_fckprotectedatt_fckprotectedatt=" scrollamount="1" scrolldelay="10" style="width: 168px; height: 203px" top="0">
						<p align="center">
							<font color="#ffffff" size="2">--Mayıs Ayı Hutbeleri Eklenmiştir.--- <br />
							<br />
							----Diyanet İşleri Başkanlığı yaz d&ouml;nemi ve Ramazan ayı umre tur kayıtlarına ilave olarak Yaz tatilinde &Ouml;ğrenci, &Ouml;ğretim G&ouml;revlisi, &Ouml;ğretmen ve Eşleri ile &Ouml;ğrenci velileri i&ccedil;in iki D&ouml;nem halinde (16&ndash;20 Haziran &ndash; 30- 04 Temmuz gidişler, 30 &ndash; 04 Temmuz &ndash; 14 &ndash; 18 Temmuz d&ouml;n&uuml;şler olmak &uuml;zere) umre programı d&uuml;zenlenmiştir. Kontenjanlar T&uuml;rkiye geneli olduğundan umreye gitme arzusunda olan vatandaşlarımızın son m&uuml;racaat tarihini beklemeden kayıtlarını yaptırmaları gerekmektedir.---- <br />
							---İl M&uuml;ft&uuml;l&uuml;ğ&uuml;m&uuml;z 2012 Ocak ayından bu yana Her Cuma G&uuml;n&uuml; Merkez Yeni Camiinde Sabah namazlarında &ldquo;Cuma Sabahı Toplu Namaz Programı; adıyla bir kaynaşma, tanışma ve b&uuml;t&uuml;nleşme programı d&uuml;zenlemektedir. T&uuml;m personelimiz ve halkımız bu programa davetlidir.---<br />
							------<br />
							-----Kur&rsquo;an Kurslarında Hafızlık eğitimini tamamlayan &ouml;ğrenciler ile kendi imk&acirc;nlarıyla kurs dışında Hafızlığını tamamlayanlar i&ccedil;in Temmuz ayında belirlenecek B&ouml;lge İllerde Hafızlık Tespit Sınavına m&uuml;racaatlar 18 Mayıs 2012 tarihine kadar İl ve İl&ccedil;e M&uuml;ft&uuml;l&uuml;klerine yapılabilecektir---- .<br />
							---İlimiz Merkez SItkıye Camiinde &Ouml;ğle Namazından yarım saat sonra Merkez Yeni Camiinde ise İkindi Namazından &Ouml;nce Mukabele Programı Başlamıştır. bu Programımıza B&uuml;t&uuml;n Halkımız Davetlidir---<br />
							----Bayanlara Y&ouml;nelik Vaaz İrşat Programımız T&uuml;m Hızıyla Devam Etmektedir.Programa Ulaşmak İ&ccedil;in Sol Men&uuml;lerden &quot;Dosyalar&quot; Kısmından Bakabilirsinizfont&gt---- </><//></font></p>
						</marquee></font></p>
				</td>
			</tr>
		</tbody>
	</table>
</div>
</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>
<a href="http://www.videoturko.com" style="font-size: 1pt; color: #f8f8f8" title="izle">izle</a>
<a href="http://www.sevismevideo.com" style="font-size: 1pt; color: #f8f8f8" title="sex">sex</a>
<a href="http://www.ledaydinlatmamarketi.com" style="font-size: 1pt; color: #f8f8f8" title="led aydinlatma">led aydinlatma</a>
<a href="http://www.canlitube.com" style="font-size: 1pt; color: #f8f8f8" title="porno">porno</a>
<a href="http://www.videoturko.com" style="font-size: 1pt; color: #f8f8f8" title="sevisme">sevisme</a>
<a href="http://www.jigolokayit.com" style="font-size: 1pt; color: #f8f8f8" title="jigolo">jigolo</a>
<a href="http://www.fullfilmizleyin.com" style="font-size: 1pt; color: #f8f8f8" title="film izle">film izle</a>
<a href="http://www.videoturko.com" style="font-size: 1pt; color: #f8f8f8" title="video sitesi">video sitesi</a>
<a href="http://www.bedavafilmizleyin.org" style="font-size: 1pt; color: #f8f8f8" title="film">film</a>
<a href="http://www.capitalx.com" style="font-size: 1pt; color: #f8f8f8" title="seo">seo</a>

