var APP = function(){
	
	var pub = {}, prv = {};
	
	pub.gotoUrl = function(url){
		
		window.location = url;
		
	}
		
	return pub;
	
}();
