﻿var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.8',
				width: '100%',
				height: 1500,
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-9' /></head><body><div align='center'><img src='no-ie6.png' alt='' /><p style='margin:5px 15px;'><strong>Sayfamız Internet Explorer 6'yı desteklememektedir. Sitemizden ve diğer gezdiğiniz web sitelerden tam olarak faydalanmak için, aşağıdaki son sürüm tarayıcılardan birisini kurmanızı öneririz.</strong></p><div align='center'><a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx'><img src='browser_ie.gif' style='margin-left:5px; margin-right:5px;' /></a><a href='http://www.mozilla.com/firefox/'><img src='browser_firefox.gif' style='margin-left:5px; margin-right:5px;' /></a><a href='http://www.google.com/chrome'><img src='browser_chrome.gif' style='margin-left:5px; margin-right:5px;' /></a></div> </body></html> ")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 500,
				paddingRight: 10,
				height: 500,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
