function doLink(url,type){
	if(url.length>0){
		if(type == '1'){
			window.open(url);
		}else{
			window.open(url,'_self');
		}
	}		
}