// JavaScript Document
	function harita_parser(){
		try //Internet Explorer
		{
			xmlHarita=new ActiveXObject("Microsoft.XMLDOM");
		}catch(e){
		try //Firefox, Mozilla, Opera, etc.
		{
		 xmlHarita=document.implementation.createDocument("","",null);
		}catch(e){
			alert(e.message);
			return;
		}
	  }
		xmlHarita.async=false;
		xmlHarita.load(file_path+"_xml/harita.xml");
	}