function ask(msg,url) {
	
	if( msg=='' ) {
		msg='真的要这样做吗？';
	}

	if (confirm(msg)) {
		this.location=url;
	} 
}