var IE = (navigator.userAgent.indexOf("MSIE")>=0) ? true : false;
var IE7 = (navigator.userAgent.indexOf("MSIE 7")>=0) ? true : false;
var IE8 = (navigator.userAgent.indexOf("MSIE 8")>=0) ? true : false;
//if(IE && !IE7 && !IE8){
	if(false){
	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><p style='font-size:17px;'><strong>Üzgünüz! Bu site İnternet Explorer 6 ve eski versiyonlarını desteklemiyor.</strong></p><p style='font-size:14px;'>Eğer servislerimizi kullanmak istiyorsanız aşağıda listelenen internet tarayıcılarından birini indiriniz.</p><a href='http://www.mozilla-europe.org/tr/firefox/' style='float:left;margin-left:20px;'><img src='http://astatic.virgul.com/premium/_i/ff.png' width='114' height='100' alt='Firefox' /></a><a href='http://www.microsoft.com/windows/downloads/ie/getitnow.mspx' style='float:left;margin-left:20px;'><img src='http://astatic.virgul.com/premium/_i/internetexploricon3.png' width='114' height='100' alt='ie7' /></a><a href='http://www.google.com/chrome' style='float:left;margin-left:20px;'><img src='http://astatic.virgul.com/premium/_i/ch.png' width='114' height='100' alt='Google Chrome' /></a>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				padding:15,
				width: 410,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}