
$(document).ready(function(){

  $('.anchorBtm a').click(function(){
    $('#anchor01').ScrollTo(1000, 'vertical', 'easeout');
    return false;
  });

  $('.anchorUp a').click(function(){
    $('#anchor00').ScrollTo(1000, 'vertical', 'easeout');
    return false;
  });

});



function enLinks(){
	var path = window.self.location.pathname;
	var fn = new Array();
	fn = path.split("/");
	var fileName = fn[fn.length - 1];
	if( fileName == "" ){ fileName = "index.html" }
	document.write('<a href="../english/profile/' + fileName + '" title="English">English</a>');
	document.close();
}

function openMapWindow(url){
	avWidth = screen.availWidth;
	avHeight = screen.availHeight;
	winWidth = 640;
	//winHeight = 600;
	winHeight = avHeight;
			newWindow =window.open(url,"Map_Window","left=0,top=0,width=" + winWidth + ",height=" + winHeight + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
			newWindow.focus();
}

