function imgPop(imageURL,imageTitle, width, height, teaser)
{	
	var PositionX = 170;
	var PositionY = 100;
	
	if (width < 200)
		width = 200;
	
	height += 160;
	
	if (parseInt(navigator.appVersion.charAt(0))>=4){
		var opt = 'scrollbars=yes, width='+width+', height='+height+', left='+PositionX+', top='+PositionY;

		imgWin=window.open('about:blank','',opt);
		with (imgWin.document){
			writeln('<html><head><title>Yüklüyor...</title><style>body{margin:0px;} table {font-size: 70%; border:none;}</style>');
			writeln('<script>');
			writeln('function doTitle(){document.title="'+imageTitle+'";}');
			writeln('</script>');
			writeln('</head><body bgcolor=FFFFFF scroll="no"; doTitle(); onblur="self.focus()">');
			writeln('<img align=absmiddle name="eminbead" src='+imageURL+' style="display:block">');
			writeln(teaser);
			writeln('</p></body></html>');
			close();
		}
	}
}
