var $on = function(el,type,fnc){
	YAHOO.util.Event.addListener(el, type, fnc);
}
var get = function(id){
	return YAHOO.util.Dom.get(id);
}
function confirmThis(msg, url){
	if (confirm(msg)){
		window.location = url
	}
}