function show_msg(msg) {
		popWin = window.open('','','width=200,height=200, screenX=250, screenY=250');
		notPop = (popWin == null || typeof(popWin) == "undefined") ? true: false;
		
		if(notPop) {
			alert(msg);
		} else {
			content = "<html><head><title>OTOPlatform Bilgilendirme</title>";
			content += "<link rel='stylesheet' href='css/msg.css' type='text/css' />";
			content += "</head><body onblur='self.close()'>";
			content += "<p>" + msg + "</p>";
			content += "<p><input type='button' value='KAPAT' onclick='self.close()' /></p>";
			content += "</body></html>";
			
			popWin.document.write(content);
			popWin.document.close();
		}
}

mainImg = new Image();
	
function changeImg(name) {

	mainImg.src = 'img/otophotos/m/' + name;
	document.images.mainImg.src = mainImg.src;
	document.links.mainLink.href= 'img/otophotos/m/' + name;
}