var faqPortlet = {};

faqPortlet.goToWithNotification = function (url, msg){
	
	var hasil = confirm(msg);
	if(hasil){
		window.location.href = url
	}
}

faqPortlet.goTo = function(urlGo){
	window.location.href = urlGo
}