// JavaScript Document

function getUrl() {
	var url = window.location.href;
	if ( url.indexOf("localhost") != -1 ) {
		return "http://localhost:8080/kahung";
	} else {
		return "http://www.kahung.com.hk";
	}
}


