
<html>

<head>
<meta name="google-site-verification" content="Cnls8dp4hPENF15jcy6J8njI1oPxD7_3BS6-fT3fDUE" />
<script type="text/javascript"> 
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed

fadeimages2[0]=["../galeri/resim 007.jpg", "", ""] //plain image syntax

fadeimages2[1]=["../galeri/4735.jpg", "", ""] //plain image syntax

fadeimages2[2]=["../galeri/resim 131.jpg", "", ""] //plain image syntax

fadeimages2[3]=["../galeri/resim 097.jpg", "", ""] //plain image syntax

fadeimages2[4]=["../galeri/resim 031.jpg", "", ""] //plain image syntax

fadeimages2[5]=["../galeri/fotoğraf0050.jpg", "", ""] //plain image syntax

fadeimages2[6]=["../galeri/resim 091.jpg", "", ""] //plain image syntax

fadeimages2[7]=["../galeri/resim 017.jpg", "", ""] //plain image syntax

fadeimages2[8]=["../galeri/resim 013.jpg", "", ""] //plain image syntax

fadeimages2[9]=["../galeri/7.jpg", "", ""] //plain image syntax

 
var fadebgcolor="white"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}

</script>
<script>

//DHTML Window script- Copyright Dynamic Drive (http://www.dynamicdrive.com)
//For full source code, documentation, and terms of usage,
//Visit http://www.dynamicdrive.com/dynamicindex9/dhtmlwindow.htm

var dragapproved=false
var minrestore=0
var initialwidth,initialheight
var ie5=document.all&&document.getElementById
var ns6=document.getElementById&&!document.all

function iecompattest(){
return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function drag_drop(e){
if (ie5&&dragapproved&&event.button==1){
document.getElementById("dwindow").style.left=tempx+event.clientX-offsetx+"px"
document.getElementById("dwindow").style.top=tempy+event.clientY-offsety+"px"
}
else if (ns6&&dragapproved){
document.getElementById("dwindow").style.left=tempx+e.clientX-offsetx+"px"
document.getElementById("dwindow").style.top=tempy+e.clientY-offsety+"px"
}
}

function initializedrag(e){
offsetx=ie5? event.clientX : e.clientX
offsety=ie5? event.clientY : e.clientY
document.getElementById("dwindowcontent").style.display="none" //extra
tempx=parseInt(document.getElementById("dwindow").style.left)
tempy=parseInt(document.getElementById("dwindow").style.top)

dragapproved=true
document.getElementById("dwindow").onmousemove=drag_drop
}

function loadwindow(url,width,height){
if (!ie5&&!ns6)
window.open(url,"","scrollbars=0")
else{
document.getElementById("dwindow").style.display=''
document.getElementById("dwindow").style.width=initialwidth=width+"px"
document.getElementById("dwindow").style.height=initialheight=height+"px"
document.getElementById("dwindow").style.left="30px"

document.getElementById("cframe").src=url
}
}

function maximize(){
if (minrestore==0){
minrestore=1 //maximize window
document.getElementById("maxname").setAttribute("src","resimler/restore.gif")
document.getElementById("dwindow").style.width=ns6? window.innerWidth-20+"px" : iecompattest().clientWidth+"px"
document.getElementById("dwindow").style.height=ns6? window.innerHeight-20+"px" : iecompattest().clientHeight+"px"
}
else{
minrestore=0 //restore window
document.getElementById("maxname").setAttribute("src","resimler/max.gif")
document.getElementById("dwindow").style.width=initialwidth
document.getElementById("dwindow").style.height=initialheight
}
document.getElementById("dwindow").style.left=ns6? window.pageXOffset+"px" : iecompattest().scrollLeft+"px"
document.getElementById("dwindow").style.top=ns6? window.pageYOffset+"px" : iecompattest().scrollTop+"px"
}

function closeit(){
document.getElementById("dwindow").style.display="none"
}

function stopdrag(){
dragapproved=false;
document.getElementById("dwindow").onmousemove=null;
document.getElementById("dwindowcontent").style.display="" //extra
}

</script>
<link rel="stylesheet" type="text/css" href="stil.css">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>ÖZEL ZENGİNTEST DERSHANESİ</title>
</head>
<body>
<div id="dwindow" style="position:absolute;background-color:pink;cursor:hand;left:0px;top:0px;display:none" onMousedown="initializedrag(event)" onMouseup="stopdrag()" onSelectStart="return false">
<div align="right" style="background-color:pink;"><img src="resimler/max.gif" id="maxname" onClick="maximize()"><img src="resimler/close.gif" onClick="closeit()"></div>
<div id="dwindowcontent" style="height:100%">
<iframe id="cframe" src="" width=100% height=100% frameborder="0"></iframe>
</div>
</div>
<table border="0" width="1000" cellspacing="0" cellpadding="0" height="150" class="tdnormalyazi">
	<tr>
		<td align="center">
			<img border="0" src="resimler/banner.jpg" width="1000" height="150"></td>
	</tr>
	<tr>
		<td align="center">
			<img border="0" src="resimler/logoalt.png" width="1000" height="29"></td>
	</tr>
</table>


<br />
<table border="0" width="1000" id="table1" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td width="160" align="center" valign="top">
		<table border="0" width="150" cellpadding="0" style="border-collapse: collapse; font-family: Comic Sans MS; font-size: 10pt; font-weight: bold">
	<tr>
		<td height="54" align="center" background="resimler/menuler.jpg"><a href="default.asp">ANA SAYFA</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_turuncu.jpg">
		<a href="tarihce.asp">TARİHÇEMİZ</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_yesil.jpg">
		<a href="kadro.asp">KADROMUZ</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menu_mavi.jpg">
		<a href="hedeflerimiz.asp">HEDEFLERİMİZ</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_eflatun.jpg">
		<a href="strateji.asp">STRATEJİLERİMİZ</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_pembe.jpg">
		<a href="rehberlik.asp">REHBERLİK</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_sari.jpg">
		<a href="album.asp">GALERİLER</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_yavruagzi.jpg">
		<a href="beslenme.asp">BESLENME</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_yesil.jpg">
		<a href="yazokulu.asp">YAZ OKULU</a></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_laci.jpg">
		<a href="iletisim.asp">İLETİŞİM</a></td>
	</tr>
</table>
<table border="0" width="150" id="table1" cellpadding="0" style="border-collapse: collapse; font-family: Comic Sans MS; font-size: 10pt; font-weight: bold">
	<tr>
		<td>
		<table border="0" width="100%" cellpadding="0" style="border-collapse: collapse; font-family: Comic Sans MS; font-size: 10pt; font-weight: bold">
			<tr>
			    <a href="ogrenci.asp">
				<td align="center" height="149" valign="top" background="resimler/otomasyon_bg.jpg">

				</td>
			</tr>
			</table>
		</td>
	</tr>
</table>
</div>
<table border="0" width="150" id="table2" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="54" align="center" background="resimler/gazeteler_bg.jpg">
<SELECT class="tdnormalyazi" style="width:125px;" onChange="if(this.value!=0)window.open('http'+ this.value);">
<OPTION value=0 selected>Gazeteler</OPTION>
<OPTION value=://www.aksam.com.tr/>Akşam Gazetesi</OPTION>
<OPTION value=://www.birgun.net/>Birgün Gazetesi</OPTION>
<OPTION value=://www.cumhuriyet.com.tr/>Cumhuriyet Gazetesi</OPTION>
<OPTION value=://www.evrensel.net/>Evrensel Gazetesi</OPTION>
<OPTION value=://www.hurriyet.com.tr/>Hürriyet Gazetesi</OPTION>
<OPTION value=://www.milliyet.com.tr/>Milliyet Gazetesi</OPTION>
<OPTION value=://www.ortadogugazetesi.net/>Ortadoğu Gazetesi</OPTION>
<OPTION value=://www.radikal.com.tr/>Radikal Gazetesi</OPTION>
<OPTION value=://www.sabah.com.tr/>Sabah Gazetesi</OPTION>
<OPTION value=://www.sozcugazetesi.com.tr/>Sözcü Gazetesi</OPTION>
<OPTION value=://www.takvim.com.tr/>Takvim Gazetesi</OPTION>
<OPTION value=://www.vatanim.com.tr/>Vatan Gazetesi</OPTION>
<OPTION value=://www.yeniasya.com.tr/>Yeni Asya Gazetesi</OPTION>
<OPTION value=://www.yenicaggazetesi.com.tr/>Yeniçağ Gazetesi</OPTION>
<OPTION value=://www.yenisafak.com.tr/>Yeni Şafak Gazetesi</OPTION>
</SELECT>
		</td>
	</tr>
</table>
<table border="0" width="150" id="table3" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="149" align="center" valign="top" background="resimler/arama_bg.jpg">
		<table border="0" width="120" id="table2" cellpadding="0" style="font-family: comic sans ms; font-size: 10pt; border-collapse: collapse">
			<tr>
				<td class="tdnormalyazi" width="100%">&nbsp;</td>
			</tr>
			<tr>
				<td class="tdnormalyazi" width="100%">&nbsp;</td>
			</tr>
			<tr>
				<td class="tdnormalyazi" align="center" width="100%"><b>ARAMA MOTORU</b></td>
			</tr>
			<tr>
				<td class="tdnormalyazi" width="100%">
				<hr color="white" size="0" width="100%" noshade>
				</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="100%">&nbsp;Kelime :</td>
			</tr>
			<tr>
				<form method="post" action="ara.asp">
				<td align="center" class="tdnormalyazi" width="100%">
				<input type="text" name="kelime" size="16" style="font-family: verdana; font-size: 8pt; border: 1px solid #C0C0C0"></td>
			</tr>
			<tr>
				<td align="center" class="tdnormalyazi" width="100%">
				<select name="kategori" style="width:92%;font-family: verdana; font-size: 8pt; border: 1px solid #C0C0C0">
					<option value="" selected>Kategori</option>
					<option value="haber">Haberlerde</option>
					<option value="album">Resimlerde</option>
					<option value="etkinlik">Etkinliklerde</option>
				</select>
				</td>
			</tr>
			<tr>
				<td align="center" class="tdnormalyazi" width="100%">
				<input type="submit" name="search" value="ARAMA" style="border:1px solid #C0C0C0; font-family: Verdana; font-size: 8pt; background-color:#FFFFFF"></td>
				</form>
			</tr>
		</table>
		</td>
	</tr>
</table>
		</td>
		<td width="680" align="left" valign="top">
				<br />

		<table border="0" width="100%" class="tdnormalyazi" style="border-collapse: collapse" cellspacing="2" cellpadding="2">
	<tr>
		<td> <font ><b>&#9674; BESLENME</b></font></td>
	</tr>

	<tr>
		<td>&nbsp;››&nbsp;<a href="beslenmedetay.asp?id=1">Beslenme</a></td>
	</tr>

</table>
		<br />
		<hr size="0" noshade>
		
			<font class="tdnormalyazi"><strong>YEMEK PROGRAMI</strong></font>	<br><br>

	<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" /></head>


  

<table>
<tr>  

<td>
<a href="mart_detay.asp?id=49">PAZARTESİ</a>

</td>
</tr>        

<td>
<a href="mart_detay.asp?id=50">SALI</a>

</td>
</tr>        

<td>
<a href="mart_detay.asp?id=51">ÇARŞAMBA</a>

</td>
</tr>        

<td>
<a href="mart_detay.asp?id=52">PERŞEMBE</a>

</td>
</tr>        

<td>
<a href="mart_detay.asp?id=53">CUMA</a>

</td>
</tr>        

</table>

  
  
  
				<br />
				</td>
		<td width="160" align="center" valign="top">
		<table border="0" width="150" id="table3" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="382" align="center" valign="top" background="resimler/doviz_bg.jpg">
		<table border="0" width="120" id="table2" cellpadding="0" style="font-family: comic sans ms; font-size: 10pt; border-collapse: collapse">
			<tr>
				<td class="tdnormalyazi">&nbsp;</td>
			</tr>
			<tr>
				<td class="tdnormalyazi">&nbsp;</td>
			</tr>
			<tr>
				<td class="tdnormalyazi" align="center"><b>ATATÜRK DİYOR Kİ;</b></td>
			</tr>
			<tr>
				<td colspan="2" class="tdnormalyazi">
				<hr color="white" size="0" width="100%" noshade>
				</td>
			</tr>
			<tr>
				<td align="center" class="tdnormalyazi" width="50%"><b>
				Bilelim ki milli benliğini bilmeyen milletler başka milletlere yem olurlar.
				</b></td>
			</tr>
		</table>
		</td>
	</tr>
</table>
<table id="table5">
	<tr>
		<td height="54" align="center" background="resimler/menuler_yesil.jpg" width="150">
		<strong><a href="default_haber.asp">DERSHANEMİZ'DEN HABERLER</a></strong></td>
	</tr>
	
</table>

<table>
	<tr>
		<td height="54" align="center" background="resimler/menuler_turuncu.jpg" width="150">
		<strong><a href="ders_programi.asp">DERS PROGRAMLARI</a></strong></td>
	</tr>
	<tr>
		<td height="54" align="center" background="resimler/menuler_laci.jpg" width="150">
		<strong><a href="vakit_cizelgesi.asp">VAKİT ÇİZELGESİ</a></strong></td>
	</tr>
	<tr>

		<td height="54" align="center" background="resimler/menuler_eflatun.jpg">
		
		
		

		
		
		
		
		
		<strong><a href="tanitim/yonetici/program/20100311__3076593280.pdf">TANITIM KATALOĞU</a></strong></td>
	</tr>
<div style='clear:both'></div>
<tr>

		<td height="54" align="center" background="resimler/menuler_sari.jpg">
		
		
		

		
		
		
		
		
		<strong><a href="sinav/yonetici/program/20100311__849573017.doc">SINAV TAKVİMİ</a></strong></td>
	</tr>
<div style='clear:both'></div>

</table>

<table border="0" width="150" id="table3" cellpadding="0" style="border-collapse: collapse">
	<tr>
		<td height="200" align="center" valign="top" background="resimler/stat_bg.jpg">
		<table border="0" width="120" id="table2" cellpadding="0" style="font-family: comic sans ms; font-size: 10pt; border-collapse: collapse">
			<tr>
				<td colspan="2" class="tdnormalyazi">&nbsp;</td>
			</tr>
			<tr>
				<td colspan="2" class="tdnormalyazi">&nbsp;</td>
			</tr>
			<tr>
				<td colspan="2" class="tdnormalyazi" align="center"><b>İSTATİSTİK</b></td>
			</tr>
			<tr>
				<td colspan="2" class="tdnormalyazi">
				<hr color="white" size="0" width="100%" noshade>
				</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%"><b>ZİYARETÇİ</b></td>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">Bugün :</td>
				<td align="left" class="tdnormalyazi" width="50%">94</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">Toplam :</td>
				<td align="left" class="tdnormalyazi" width="50%">62963</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">Online :</td>
				<td align="left" class="tdnormalyazi" width="50%">2</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%"><b>IP NO</b></td>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
			</tr>
			<tr>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
				<td align="left" class="tdnormalyazi" width="50%">&nbsp;</td>
			</tr>
			<tr>
				<td colspan="2" align="left" class="tdnormalyazi" width="50%">38.107.191.108</td>
			</tr>
		</table>
		</td>
	</tr>
</table>
		</td>
	</tr>
</table>
<br />
<br />
<br />
<div align="center">
	<center>
		<font class="tdnormalyazi">Copyright © 2008
		<br />
		Zengintest Dershanesi</font>
	</center>
	<center>
		<font class="tdnormalyazi2">Tasarım ve Programlama : <a href="http://www.terawebbilisim.com" target="_blank" class="tera">Teraweb</a></font>
	</center>
</div>
<br />
</body>
</html>
